Files
omarchy/bin/omarchy-toggle-suspend
2026-01-06 16:45:12 +01:00

14 lines
335 B
Bash
Executable File

#!/bin/bash
STATE_FILE=~/.local/state/omarchy/toggles/suspend-on
if [[ ! -f $STATE_FILE ]]; then
mkdir -p "$(dirname $STATE_FILE)"
touch $STATE_FILE
notify-send "󰒲 Suspend now available in system menu"
else
mkdir -p "$(dirname $STATE_FILE)"
rm -f $STATE_FILE
notify-send "󰒲 Suspend removed from system menu"
fi