diff options
author | Adrian Kummerlaender | 2018-12-14 16:25:00 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2018-12-14 16:25:00 +0100 |
commit | 8b4b0320343c39c3608945dcb8bbd81d1627af1a (patch) | |
tree | 687aa2a10d1dcd38f26a6910d323608fc46b171c /gui | |
parent | bf3c79332de9c138337485cd227dad5dd6801da0 (diff) | |
download | nixos_home-8b4b0320343c39c3608945dcb8bbd81d1627af1a.tar nixos_home-8b4b0320343c39c3608945dcb8bbd81d1627af1a.tar.gz nixos_home-8b4b0320343c39c3608945dcb8bbd81d1627af1a.tar.bz2 nixos_home-8b4b0320343c39c3608945dcb8bbd81d1627af1a.tar.lz nixos_home-8b4b0320343c39c3608945dcb8bbd81d1627af1a.tar.xz nixos_home-8b4b0320343c39c3608945dcb8bbd81d1627af1a.tar.zst nixos_home-8b4b0320343c39c3608945dcb8bbd81d1627af1a.zip |
Add majestix's resolution to XMonad config
Diffstat (limited to 'gui')
-rw-r--r-- | gui/conf/xmonad.hs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index dacc90a..79c7ace 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -292,8 +292,10 @@ hideScreenBorder host (S.RationalRect x0 y0 w h) = S.RationalRect (x0-(bw/sw)) ( sh = screenHeightOn host screenWidthOn host = case host of - "obelix" -> 1920 - "asterix" -> 1366 + "obelix" -> 1920 + "majestix" -> 1680 + "asterix" -> 1366 screenHeightOn host = case host of - "obelix" -> 1200 - "asterix" -> 768 + "obelix" -> 1200 + "majestix" -> 1050 + "asterix" -> 768 |