mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
27 lines
636 B
Bash
Executable File
27 lines
636 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Toggle Omarchy features between enabled and disabled
|
|
|
|
ENABLED_NOTIFICATION=""
|
|
DISABLED_NOTIFICATION=""
|
|
|
|
while [[ $# -gt 1 ]]; do
|
|
case $1 in
|
|
--enabled-notification) ENABLED_NOTIFICATION="$2"; shift 2 ;;
|
|
--disabled-notification) DISABLED_NOTIFICATION="$2"; shift 2 ;;
|
|
*) break ;;
|
|
esac
|
|
done
|
|
|
|
FLAG_NAME="$1"
|
|
FLAG="$HOME/.local/state/omarchy/toggles/$FLAG_NAME"
|
|
|
|
if [[ -f $FLAG ]]; then
|
|
rm $FLAG
|
|
[[ -n $DISABLED_NOTIFICATION ]] && notify-send -u low "$DISABLED_NOTIFICATION"
|
|
else
|
|
mkdir -p "$(dirname $FLAG)"
|
|
touch $FLAG
|
|
[[ -n $ENABLED_NOTIFICATION ]] && notify-send -u low "$ENABLED_NOTIFICATION"
|
|
fi
|