mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
7 lines
228 B
Bash
Executable File
7 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Launch a TUI command in the default terminal with Omarchy styling
|
|
# omarchy:args=<command> [args...]
|
|
|
|
exec setsid uwsm-app -- xdg-terminal-exec --app-id=org.omarchy.$(basename $1) -e "$1" "${@:2}"
|