aboutsummaryrefslogtreecommitdiff
path: root/buttons
diff options
context:
space:
mode:
authorPhilip Wittamore <philip@wittamore.com>2026-01-23 14:50:26 +0100
committerPhilip Wittamore <philip@wittamore.com>2026-01-23 14:50:26 +0100
commit91a1b14d8e4ffbaa80b95923d7707f4df40483d9 (patch)
tree258fb13663049c5089229a73418c4dd6b498bb76 /buttons
downloadxdm-simple-dinit-91a1b14d8e4ffbaa80b95923d7707f4df40483d9.tar.gz
xdm-simple-dinit-91a1b14d8e4ffbaa80b95923d7707f4df40483d9.tar.bz2
xdm-simple-dinit-91a1b14d8e4ffbaa80b95923d7707f4df40483d9.zip
update
Diffstat (limited to 'buttons')
-rwxr-xr-xbuttons15
1 files changed, 15 insertions, 0 deletions
diff --git a/buttons b/buttons
new file mode 100755
index 0000000..f4c2106
--- /dev/null
+++ b/buttons
@@ -0,0 +1,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