PKGBUILDs/community/xdm-archlinux/buttons

13 lines
118 B
Text
Raw Normal View History

2009-10-10 02:15:33 +00:00
#!/bin/sh
xmessage -buttons reboot,halt "$@" ""
case "$?" in
101)
/sbin/reboot
;;
102)
/sbin/halt
;;
esac