blob: 6e6c6132cc43a3a0bfc0fc993f640e9a0617f707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/sh
[ -z "$1" ] && echo "no arg" && exit 1
host="$(hostname -s)"
case $host in
mother) icon=" " ;;
po-rbo) icon=" " ;;
mars) icon=" " ;;
esac
case $1 in
"lock") xscreensaver-command -lock ;;
"sleep")
notify-send -u normal "sleep" "$icon G'night, partner!"
sleep 1
xscreensaver-command -lock
sleep 5
case $host in
mother) loginctl suspend ;;
po-rbo) systemctl suspend ;;
mars) acpiconf -s 3 ;;
esac
;;
"reboot")
emacsclient -e '"(save-buffers-kill-emacs)"' >/dev/null 2>&1
notify-send -u normal reboot "$icon Rebootin' now!"
sleep 2
case $host in
mother) loginctl reboot ;;
po-rbo) systemctl reboot ;;
mars) shutdown -r now ;;
esac
;;
"poweroff")
emacsclient -e '"(save-buffers-kill-emacs)"' >/dev/null 2>&1
notify-send -u normal poweroff "$icon Farewell, partner!"
sleep 2
case $host in
mother) loginctl poweroff ;;
po-rbo) systemctl poweroff ;;
mars) shutdown -p now ;;
esac
;;
*)
echo "wrong arg"
exit 1
;;
esac
|