mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 12:47:49 +02:00
7 lines
156 B
Bash
Executable File
7 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Check if a toggle is enabled (flag file exists)
|
|
# omarchy:args=<flag-name>
|
|
|
|
[[ -f "$HOME/.local/state/omarchy/toggles/$1" ]]
|