aboutsummaryrefslogtreecommitdiff
path: root/buttons
blob: f4c2106749cd2f70d847eb11bd47d2121f033a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

xmessage -buttons reboot,suspend,poweroff "$@" ""

case "$?" in
	101)
		/usr/bin/loginctl reboot
		;;
	102)
		/usr/bin/loginctl suspend
		;;
	103)
		/usr/bin/loginctl poweroff
		;;
esac