Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
12 lines
305 B
Bash
Executable File
12 lines
305 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Toggle suspend availability in the system menu
|
|
|
|
omarchy-toggle suspend-off
|
|
|
|
if omarchy-toggle-enabled suspend-off; then
|
|
omarchy-notification-send -g "Suspend removed from system menu"
|
|
else
|
|
omarchy-notification-send -g "Suspend now available in system menu"
|
|
fi
|