Reduce Settings to just Bar Settings

The other don't add enough over the Omarchy Menu
This commit is contained in:
David Heinemeier Hansson
2026-05-16 21:47:54 +02:00
parent db5c09fc2e
commit eaea4cd577
12 changed files with 118 additions and 1524 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/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 "{}"
-23
View File
@@ -1,23 +0,0 @@
#!/bin/bash
# omarchy:summary=Launch the Omarchy settings panel
# omarchy:group=launch
# omarchy:name=settings
# omarchy:args=[bar|plugins|defaults|style]
# omarchy:examples=omarchy launch settings | omarchy launch settings defaults | omarchy launch settings style
category="${1:-}"
payload="{}"
case "$category" in
bar|plugins|defaults|style)
payload=$(printf '{"category":"%s"}' "$category")
;;
"")
;;
*)
echo "Usage: omarchy-launch-settings [bar|plugins|defaults|style]" >&2
exit 1
;;
esac
exec omarchy-shell-ipc shell summon omarchy.settings "$payload"
+1 -1
View File
@@ -1,6 +1,6 @@
#!/bin/bash
# omarchy:summary=Set or toggle corner radius for the omarchy-shell menu and settings panel
# omarchy:summary=Set or toggle corner radius for the omarchy-shell menu and bar settings panel
# omarchy:args=[toggle|sharp|round]
# omarchy:examples=omarchy style corners quickshell toggle | omarchy style corners quickshell round | omarchy style corners quickshell sharp