From 350576cc39efb7f801dc0367ba309bb85d481100 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Mon, 18 Apr 2022 11:25:54 +0300 Subject: [PATCH] fix(prog/xmonad): workspace names --- programs/xmonad/xmonad.hs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/programs/xmonad/xmonad.hs b/programs/xmonad/xmonad.hs index b497fa1..b1e3f5d 100644 --- a/programs/xmonad/xmonad.hs +++ b/programs/xmonad/xmonad.hs @@ -188,8 +188,8 @@ myMouseBindings (XConfig {XMonad.modMask = modm}) = M.fromList -- which denotes layout choice. -- myLayout = avoidStruts - $ onWorkspace "web" (myTall (1/2) ||| myFull ||| Grid) - $ onWorkspace "chat" (myTall (1/2)) + $ onWorkspace "1:web" (myTall (1/2) ||| myFull ||| Grid) + $ onWorkspace "4:chat" (myTall (1/2)) $ myTall (2/3) ||| myFull ||| Grid where myTall = smartBorders . Tall nmaster delta @@ -225,9 +225,9 @@ myManageHook = composeAll , className =? "Gnome-calculator" --> doFloat , className =? "Gnome-font-viewer" --> doFloat , className =? "Org.gnome.Nautilus" --> doFloat - , className =? "firefox-trunk-nightly" --> doShift "web" - , resource =? "telegram-desktop" --> doShift "chat" - , className =? "Thunderbird" --> doShift "chat" + , className =? "firefox-trunk-nightly" --> doShift "1:web" + , resource =? "telegram-desktop" --> doShift "4:chat" + , className =? "Thunderbird" --> doShift "4:chat" -- my libs , resource =? "hwt" --> doFloat ]