24 lines
347 B
Bash
Executable File
24 lines
347 B
Bash
Executable File
#!/bin/bash
|
|
|
|
xmessage -buttons "Cancel:0,Reload:1,Reboot:2,Power off:3" -default "Cancel" -center -file /etc/openkiosk/help.txt
|
|
|
|
# Check the exit code of the button pressed
|
|
case $? in
|
|
0)
|
|
true
|
|
;;
|
|
1)
|
|
pkill chromium
|
|
pkill xpdf
|
|
;;
|
|
2)
|
|
/usr/sbin/shutdown -r now
|
|
;;
|
|
3)
|
|
/usr/sbin/shutdown -P now
|
|
;;
|
|
*)
|
|
false
|
|
;;
|
|
esac
|