With initial workspace tracking disabled, windows naturally open on the active workspace. Remove the explicit Hyprland workspace dispatch and let shell actions, shell restarts, and presentation terminals launch directly.
10 lines
349 B
Bash
Executable File
10 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Launch a floating terminal with the Omarchy presentation wrapper
|
|
# omarchy:args=<command>
|
|
|
|
cmd="$*"
|
|
presentation_script="omarchy-show-logo; $cmd; if (( \$? != 130 )); then omarchy-show-done; fi"
|
|
|
|
exec setsid uwsm-app -- xdg-terminal-exec --app-id=org.omarchy.terminal --title=Omarchy -e bash -c "$presentation_script"
|