Keep new browser windows on current workspace
This commit is contained in:
@@ -18,6 +18,14 @@ systemd-run --user --quiet --collect --unit="omarchy-browser-$(date +%s%N)" \
|
|||||||
--property=StandardOutput=null --property=StandardError=null \
|
--property=StandardOutput=null --property=StandardError=null \
|
||||||
uwsm-app -- "$browser_exec" "${@/--private/$private_flag}"
|
uwsm-app -- "$browser_exec" "${@/--private/$private_flag}"
|
||||||
|
|
||||||
if [[ -n ${HYPRLAND_INSTANCE_SIGNATURE:-} ]]; then
|
url=""
|
||||||
|
for argument in "$@"; do
|
||||||
|
if [[ $argument != "--private" ]]; then
|
||||||
|
url=$argument
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ -n $url && -n ${HYPRLAND_INSTANCE_SIGNATURE:-} ]]; then
|
||||||
omarchy-hyprland-focus-app "^$(basename "$browser_exec" -stable).*$" || true
|
omarchy-hyprland-focus-app "^$(basename "$browser_exec" -stable).*$" || true
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -36,6 +36,18 @@ chmod +x "$mock_bin"/*
|
|||||||
|
|
||||||
launch_log="$test_tmp/launch"
|
launch_log="$test_tmp/launch"
|
||||||
focus_log="$test_tmp/focus"
|
focus_log="$test_tmp/focus"
|
||||||
|
HOME="$test_home" PATH="$mock_bin:$PATH" HYPRLAND_INSTANCE_SIGNATURE=test \
|
||||||
|
OMARCHY_TEST_BROWSER_LAUNCH="$launch_log" OMARCHY_TEST_BROWSER_FOCUS="$focus_log" \
|
||||||
|
bash "$ROOT/bin/omarchy-launch-browser"
|
||||||
|
|
||||||
|
[[ ! -e $focus_log ]] || fail "browser launcher leaves a new window on the current workspace"
|
||||||
|
|
||||||
|
HOME="$test_home" PATH="$mock_bin:$PATH" HYPRLAND_INSTANCE_SIGNATURE=test \
|
||||||
|
OMARCHY_TEST_BROWSER_LAUNCH="$launch_log" OMARCHY_TEST_BROWSER_FOCUS="$focus_log" \
|
||||||
|
bash "$ROOT/bin/omarchy-launch-browser" --private
|
||||||
|
|
||||||
|
[[ ! -e $focus_log ]] || fail "private browser launcher leaves a new window on the current workspace"
|
||||||
|
|
||||||
HOME="$test_home" PATH="$mock_bin:$PATH" HYPRLAND_INSTANCE_SIGNATURE=test \
|
HOME="$test_home" PATH="$mock_bin:$PATH" HYPRLAND_INSTANCE_SIGNATURE=test \
|
||||||
OMARCHY_TEST_BROWSER_LAUNCH="$launch_log" OMARCHY_TEST_BROWSER_FOCUS="$focus_log" \
|
OMARCHY_TEST_BROWSER_LAUNCH="$launch_log" OMARCHY_TEST_BROWSER_FOCUS="$focus_log" \
|
||||||
bash "$ROOT/bin/omarchy-launch-browser" "https://example.test/authorize"
|
bash "$ROOT/bin/omarchy-launch-browser" "https://example.test/authorize"
|
||||||
|
|||||||
Reference in New Issue
Block a user