Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
12 lines
269 B
Bash
Executable File
12 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Toggle screensaver availability
|
|
|
|
omarchy-toggle screensaver-off
|
|
|
|
if omarchy-toggle-enabled screensaver-off; then
|
|
omarchy-notification-send -g "Screensaver disabled"
|
|
else
|
|
omarchy-notification-send -g "Screensaver enabled"
|
|
fi
|