From b200e2c765f11f2b597fded5b486af6d54dd3a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sun, 12 Nov 2023 14:05:35 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(hypr):=20librewolf=20now=20r?= =?UTF-8?q?espects=20the=20workspace=20and=20monitor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/hypr/scripts/custom_app_launch | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.config/hypr/scripts/custom_app_launch b/.config/hypr/scripts/custom_app_launch index da4278e5..b35c079c 100755 --- a/.config/hypr/scripts/custom_app_launch +++ b/.config/hypr/scripts/custom_app_launch @@ -61,14 +61,13 @@ case $app in kitty nvim fi ;; -# I DONT KNOW WHY LIBREWOLF IS NOT WORKING ._. "librewolf") if [ "$FOCUSED_MONITOR" = "$MONITOR1" ]; then - hyprctl dispatch exec [workspace 1] librewolf + hyprctl dispatch workspace 1 && librewolf # Had to to this because it didnt work the other way elif [ "$FOCUSED_MONITOR" = "$MONITOR2" ]; then - hyprctl dispatch exec [workspace 11] librewolf + hyprctl dispatch workspace 11 && librewolf elif [ "$FOCUSED_MONITOR" = "$MONITOR3" ]; then - hyprctl dispatch exec [workspace 25] librewolf + hyprctl dispatch workspace 25 && librewolf else librewolf fi