From 3d5cefd1904f5d07b911102e61ff58312c3d4718 Mon Sep 17 00:00:00 2001 From: c47 Date: Mon, 19 Feb 2024 06:58:09 +0100 Subject: [PATCH] Add 'nheko' class to manageHook Added nheko to manageHook to shift it to WS3 as done with the other chat clients as well. --- xmonad/xmonad.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/xmonad/xmonad.hs b/xmonad/xmonad.hs index f517c0f..a10ce78 100644 --- a/xmonad/xmonad.hs +++ b/xmonad/xmonad.hs @@ -19,6 +19,7 @@ myManageHook = composeAll . concat $ , [ title =? "DailyShell" --> doShift "2" ] , [ className =? "Signal" --> doShift "3" ] , [ className =? "SchildiChat" --> doShift "3" ] + , [ className =? "nheko" --> doShift "3" ] , [ className =? "Skype" --> doShift "3" ] , [ className =? "easyeffects" --> doShift "9" ] , [ className =? "Brave-browser" --> doShift "7" ]