diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-05-19 23:01:45 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-05-19 23:01:45 +0530 |
commit | 95de07e9fdbef5ef950f6701bf292d9465c24692 (patch) | |
tree | ea430e692f59401074e0e1b5e5383b84c0c3ad60 /.config | |
parent | 5179ef861abdf38382dffe2f37874a1766e93540 (diff) |
fixed thunderbird startup ws
Diffstat (limited to '.config')
-rw-r--r-- | .config/XMonad/lib/Hooks.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/XMonad/lib/Hooks.hs b/.config/XMonad/lib/Hooks.hs index 7e969df..4dcb821 100644 --- a/.config/XMonad/lib/Hooks.hs +++ b/.config/XMonad/lib/Hooks.hs @@ -25,7 +25,7 @@ import Scratchpads myManageHook = namedScratchpadManageHook myScratchpads <+> manageDocks <+> composeAll [ className =? "discord" --> doShift ( myWorkspaces !! 9 ) - , className =? "Mail" --> doShift ( myWorkspaces !! 8 ) + , className =? "thunderbird" --> doShift ( myWorkspaces !! 8 ) , className =? "KeePassXC" --> doShift ( myWorkspaces !! 7 ) , isFullscreen --> doFullFloat ] |