summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/xmonad
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2021-01-11 14:25:40 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2021-01-11 14:25:40 +0100
commite37530514528e7501db1cd8d0c673d4837cd6093 (patch)
tree3bf190e0f448946ea1f48719c44808dddd63b379 /accounts/gkleen@sif/xmonad
parent9132a22249e606c59d0b23610bcf8ffb84596ef1 (diff)
downloadnixos-e37530514528e7501db1cd8d0c673d4837cd6093.tar
nixos-e37530514528e7501db1cd8d0c673d4837cd6093.tar.gz
nixos-e37530514528e7501db1cd8d0c673d4837cd6093.tar.bz2
nixos-e37530514528e7501db1cd8d0c673d4837cd6093.tar.xz
nixos-e37530514528e7501db1cd8d0c673d4837cd6093.zip
gkleen@sif: move zoom to own workspace
Diffstat (limited to 'accounts/gkleen@sif/xmonad')
-rw-r--r--accounts/gkleen@sif/xmonad/xmonad.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/xmonad/xmonad.hs b/accounts/gkleen@sif/xmonad/xmonad.hs
index f3a59f34..0308f0a0 100644
--- a/accounts/gkleen@sif/xmonad/xmonad.hs
+++ b/accounts/gkleen@sif/xmonad/xmonad.hs
@@ -221,6 +221,7 @@ hostFromName h
221 , Just $ (className =? "Nvidia-settings") -?> doCenterFloat 221 , Just $ (className =? "Nvidia-settings") -?> doCenterFloat
222 , Just $ fmap ("Minetest" `isInfixOf`) title -?> doIgnore 222 , Just $ fmap ("Minetest" `isInfixOf`) title -?> doIgnore
223 , Just $ fmap ("Automachef" `isInfixOf`) title -?> doIgnore 223 , Just $ fmap ("Automachef" `isInfixOf`) title -?> doIgnore
224 , assign "call" $ className =? "zoom"
224 ]) 225 ])
225 , hWsp = hWsp 226 , hWsp = hWsp
226 , hCoWsp = hCoWsp 227 , hCoWsp = hCoWsp
@@ -306,6 +307,7 @@ hostFromName h
306 , (4, "read") 307 , (4, "read")
307 , (5, "monitor") 308 , (5, "monitor")
308 , (6, "uni") 309 , (6, "uni")
310 , (8, "call")
309 , (9, "media") 311 , (9, "media")
310 , (10, "mpv") 312 , (10, "mpv")
311 ] 313 ]
@@ -531,6 +533,7 @@ main = do
531 onWorkspace (wsp 6) workLayouts $ 533 onWorkspace (wsp 6) workLayouts $
532 onWorkspace (wsp 4) (tabbedLayout' ||| tabbedLayoutHoriz' ||| Dwindle R CW 1 (5 % 100)) $ 534 onWorkspace (wsp 4) (tabbedLayout' ||| tabbedLayoutHoriz' ||| Dwindle R CW 1 (5 % 100)) $
533 onWorkspace (wsp 5) (tabbedLayout''' ||| Dwindle R CW 1 (5 % 100)) $ 535 onWorkspace (wsp 5) (tabbedLayout''' ||| Dwindle R CW 1 (5 % 100)) $
536 onWorkspace (wsp 8) tabbedLayout''' $
534 onWorkspace (wsp 10) (tabbedLayout''' ||| combineTwoP (TwoPane (1 % 100) (3 % 4)) tabbedLayout''' tabbedLayout''' (ClassName "mpv") ||| Dwindle R CW 1 (5 % 100)) $ 537 onWorkspace (wsp 10) (tabbedLayout''' ||| combineTwoP (TwoPane (1 % 100) (3 % 4)) tabbedLayout''' tabbedLayout''' (ClassName "mpv") ||| Dwindle R CW 1 (5 % 100)) $
535 defaultLayouts 538 defaultLayouts
536 ) $ 539 ) $