Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions notification/chkboot-desktopalert
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ NOTIFICATION="This notification will continue to appear until you either run chk

if [ -s $chgfile ]; then
if [ -x $ZENITY ]; then
cat $chgfile | $ZENITY --title "ALERT: Boot changes" --text-info --width 550 --height 300
$ZENITY --title "chkboot" --info --text="$NOTIFICATION"
cat $chgfile | $ZENITY --title="ALERT: chkboot has detected boot changes" --window-icon=warning --text-info --width=550 --height=300
$ZENITY --title "chkboot" --info --text="$NOTIFICATION" --width=400
elif [ -x $XMESSAGE ]; then
cat $chgfile | $XMESSAGE -default okay -file -
$XMESSAGE -default okay $NOTIFICATION
Expand Down