mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* Add focus or launch script * Replace eval with exec * Use eval so it properly expands the variables * Apply to the apps where it makes most sense --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
9 lines
178 B
Bash
Executable File
9 lines
178 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if (($# == 0)); then
|
|
echo "Usage: omarchy-launch-or-focus-webapp [window-pattern] [url]"
|
|
exit 1
|
|
fi
|
|
|
|
exec omarchy-launch-or-focus $1 "omarchy-launch-webapp '$2'"
|