From 0d4a076a102717fdd47dc2a5c97e061d48ee79d5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 1 May 2026 17:31:25 +0200 Subject: [PATCH] Add omarchy command documentation --- bin/omarchy-toggle-touchscreen | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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