diff --git a/bin/omarchy-toggle-touchscreen b/bin/omarchy-toggle-touchscreen index 81414c98..a0b5ccb0 100755 --- a/bin/omarchy-toggle-touchscreen +++ b/bin/omarchy-toggle-touchscreen @@ -1,5 +1,8 @@ #!/bin/bash +# omarchy:summary=Enable, disable, or toggle the touch functionality of the screen +# omarchy:args=[on|off|toggle] + STATE_CONF="$HOME/.local/state/omarchy/toggles/hypr/touchscreen-disabled.conf" device="$(omarchy-hw-touchscreen)" @@ -26,4 +29,4 @@ case "${1:-toggle}" in on) enable ;; off) disable ;; toggle) if [[ -f $STATE_CONF ]]; then enable; else disable; fi ;; -esac \ No newline at end of file +esac