PKGBUILDs/community/xdm-archlinux/buttons
2009-10-09 21:15:33 -05:00

12 lines
118 B
Bash
Executable file

#!/bin/sh
xmessage -buttons reboot,halt "$@" ""
case "$?" in
101)
/sbin/reboot
;;
102)
/sbin/halt
;;
esac