mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
9 lines
180 B
Bash
Executable File
9 lines
180 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'"
|