xmonad: Set chromium fully opaque
This commit is contained in:
parent
79b8394ba3
commit
cfab9a2faa
1 changed files with 2 additions and 0 deletions
|
@ -18,8 +18,10 @@ fadeRules :: Query Rational
|
||||||
fadeRules = do
|
fadeRules = do
|
||||||
fullscreen <- isFullscreen
|
fullscreen <- isFullscreen
|
||||||
conkeror <- className =? "Conkeror"
|
conkeror <- className =? "Conkeror"
|
||||||
|
chromium <- className =? "Chromium"
|
||||||
return $ case () of _ | fullscreen -> 1
|
return $ case () of _ | fullscreen -> 1
|
||||||
| conkeror -> 0.95
|
| conkeror -> 0.95
|
||||||
|
| chromium -> 1
|
||||||
| otherwise -> 0.9
|
| otherwise -> 0.9
|
||||||
|
|
||||||
main = xmonad $ defaultConfig
|
main = xmonad $ defaultConfig
|
||||||
|
|
Loading…
Reference in a new issue