mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 12:39:35 +02:00
14 lines
337 B
Bash
Executable File
14 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Launch the Omarchy bar settings panel
|
|
# omarchy:group=launch
|
|
# omarchy:name=bar settings
|
|
# omarchy:examples=omarchy launch bar settings | omarchy-launch-bar-settings
|
|
|
|
if (($# > 0)); then
|
|
echo "Usage: omarchy-launch-bar-settings" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exec omarchy-shell-ipc shell summon omarchy.settings "{}"
|