From d1e3d109471d85aed5ba07001d8b9b2aa3a997f4 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 20 Jun 2024 12:01:36 -0500 Subject: [PATCH] make fflof use a specific firefox class name --- scripts/fflof | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/fflof b/scripts/fflof index b1c1224..51a1b16 100755 --- a/scripts/fflof +++ b/scripts/fflof @@ -25,15 +25,15 @@ if [ $(pgrep -c firefox) -gt 0 ]; then exit else # WAYLAND - ffrg=$(hyprctl clients | rg firefox) + ffrg=$(hyprctl clients | rg ff) ffwin=$(echo $ffrg | sed 's/.*\: //') # echo $ffwin - exec hyprctl dispatch focuswindow firefox + exec hyprctl dispatch focuswindow ff exit fi fi else - exec firefox + exec firefox --name "ff" fi