7 lines
228 B
Bash
Executable File
7 lines
228 B
Bash
Executable File
#!/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}"
|