Add omarchy command documentation

This commit is contained in:
David Heinemeier Hansson
2026-05-01 17:31:25 +02:00
parent ee6fbda428
commit 0d4a076a10
+4 -1
View File
@@ -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
esac