Files
Nomarchy/bin/nomarchy-toggle-suspend
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

13 lines
313 B
Bash
Executable File

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