mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
13 lines
298 B
Bash
Executable File
13 lines
298 B
Bash
Executable File
#!/bin/bash
|
|
|
|
STATE_FILE=~/.local/state/omarchy/toggles/suspend-off
|
|
|
|
if [[ -f $STATE_FILE ]]; then
|
|
rm -f $STATE_FILE
|
|
notify-send " Suspend now available in system menu"
|
|
else
|
|
mkdir -p "$(dirname $STATE_FILE)"
|
|
touch $STATE_FILE
|
|
notify-send " Suspend removed from system menu"
|
|
fi
|