mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
12 lines
335 B
Bash
Executable File
12 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Toggle suspend availability in the system menu
|
|
|
|
if omarchy-toggle-enabled suspend-off; then
|
|
omarchy-toggle suspend-off
|
|
omarchy-notification-send -g "Suspend now available in system menu"
|
|
else
|
|
omarchy-toggle suspend-off
|
|
omarchy-notification-send -g "Suspend removed from system menu"
|
|
fi
|