2022-02-10 08:05:07 +00:00
|
|
|
#!/bin/sh
|
2022-03-11 12:43:31 +00:00
|
|
|
if [ -z "$(grep off "$XDG_RUNTIME_DIR/enable_suspend")" ] ; then
|
2022-02-10 08:05:07 +00:00
|
|
|
echo off > "$XDG_RUNTIME_DIR/enable_suspend"
|
|
|
|
notify-send "Sleep mode is now" "off"
|
|
|
|
else
|
|
|
|
echo on > "$XDG_RUNTIME_DIR/enable_suspend"
|
|
|
|
notify-send "Sleep mode is now" "on"
|
|
|
|
fi
|