mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
12 lines
303 B
Bash
Executable File
12 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Toggle screensaver availability
|
|
|
|
if omarchy-toggle-enabled screensaver-off; then
|
|
omarchy-toggle screensaver-off
|
|
omarchy-notification-send -g "Screensaver enabled"
|
|
else
|
|
omarchy-toggle screensaver-off
|
|
omarchy-notification-send -g "Screensaver disabled"
|
|
fi
|