xmonad: small changes
This commit is contained in:
parent
0bd010e34c
commit
3d08b0f4a1
|
@ -85,7 +85,7 @@ myScratchpads = [ NS "ncmpcpp" spawnNC findNC layoutA
|
||||||
]
|
]
|
||||||
where
|
where
|
||||||
spawnNC = myTerminal ++ " --title ncmpcppScratchpad -e ncmpcpp"
|
spawnNC = myTerminal ++ " --title ncmpcppScratchpad -e ncmpcpp"
|
||||||
spawnTM = myTerminal ++ " --class instanceClass,floatingTerminal -e tmux new-session -A -s f"
|
spawnTM = myTerminal ++ " --class floatingTerminal -e tmux new-session -A -s f"
|
||||||
-- spawnMX = "element"
|
-- spawnMX = "element"
|
||||||
spawnFB = "thunar --class=floatingThunar"
|
spawnFB = "thunar --class=floatingThunar"
|
||||||
spawnEX = "emacs --name=floatingEmacs"
|
spawnEX = "emacs --name=floatingEmacs"
|
||||||
|
@ -144,9 +144,6 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
|
||||||
|
|
||||||
++
|
++
|
||||||
|
|
||||||
-- mod-{w,e,r}, Switch to physical/Xinerama screens 1, 2, or 3
|
|
||||||
-- mod-shift-{w,e,r}, Move client to screen 1, 2, or 3
|
|
||||||
|
|
||||||
[((m .|. modm, key), screenWorkspace sc >>= flip whenJust (windows . f))
|
[((m .|. modm, key), screenWorkspace sc >>= flip whenJust (windows . f))
|
||||||
| (key, sc) <- zip [xK_u, xK_i] [0..]
|
| (key, sc) <- zip [xK_u, xK_i] [0..]
|
||||||
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
|
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
|
||||||
|
@ -323,10 +320,10 @@ polybarHook dbus =
|
||||||
, ppLayout =
|
, ppLayout =
|
||||||
wrap "%{T3}" "%{T-}" .
|
wrap "%{T3}" "%{T-}" .
|
||||||
(\case
|
(\case
|
||||||
"Spacing Full" -> "\62160"
|
"Spacing Full" -> "F"
|
||||||
"Spacing Tall" -> "\57934"
|
"Spacing Tall" -> "T"
|
||||||
"Spacing Magnifier Tall" -> "\61442" -- 🔍
|
"Spacing Magnifier Tall" -> "Mag"
|
||||||
"Spacing Mirror Tall" -> "\57935" -- 🪞
|
"Spacing Mirror Tall" -> "Mir"
|
||||||
)
|
)
|
||||||
, ppOrder = \(ws:l:t:ex) -> [ws,l] ++ ex ++ [t]
|
, ppOrder = \(ws:l:t:ex) -> [ws,l] ++ ex ++ [t]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue