7 lines
228 B
Bash
7 lines
228 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Launch a TUI command in the default terminal with Omarchy styling
|
||
|
|
# archypr:args=<command> [args...]
|
||
|
|
|
||
|
|
exec setsid uwsm-app -- xdg-terminal-exec --app-id=org.omarchy.$(basename $1) -e "$1" "${@:2}"
|