From a8c560bb070d14dcc96d29b39bc99c14859383b6 Mon Sep 17 00:00:00 2001 From: Lars Vierbergen Date: Thu, 12 Jan 2017 20:03:22 +0100 Subject: [PATCH] Do not automatically move firefox windows to WS1 Working with multiple windows of firefox on different workspaces happens sometimes. It is not really nice to move download windows and stuff to WS1 when I am waiting for it on on another workspace --- xmonad.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xmonad.hs b/xmonad.hs index 532e4a4..b324591 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -45,8 +45,7 @@ baseXPConfig = defaultXPConfig { workspaceManageHook :: ManageHook workspaceManageHook = composeAll [ - className =? "Firefox" --> doShift "1:web" - ,className =? "Icedove" --> doShift "2:com" + className =? "Icedove" --> doShift "2:com" ,className =? "Gajim" --> doShift "2:com" ,className =? "jetbrains-phpstorm" --> doShift "3:dev" ,className =? "jetbrains-pycharm" --> doShift "3:dev"