Files
omarchycn/bin/omarchy-launch-bar-settings
T
David Heinemeier Hansson eaea4cd577 Reduce Settings to just Bar Settings
The other don't add enough over the Omarchy Menu
2026-05-16 21:47:54 +02:00

19 lines
384 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Launch the Omarchy bar settings panel
# omarchy:group=launch
# omarchy:name=settings
# omarchy:args=[bar]
# omarchy:examples=omarchy launch settings | omarchy launch settings bar
case "${1:-}" in
""|bar)
;;
*)
echo "Usage: omarchy-launch-settings [bar]" >&2
exit 1
;;
esac
exec omarchy-shell-ipc shell summon omarchy.settings "{}"