mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-07 04:20:27 +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'"
|