xmonad-config/xmonad.hs

72 lines
2.7 KiB
Haskell
Raw Normal View History

2017-12-10 01:14:39 +01:00
-- My xmonad configuration, based on the example.hs of the xmonad project
-- including best practises.
-- https://github.com/xmonad/xmonad-contrib/blob/master/XMonad/Config/Example.hs
module Main (main) where
2017-12-08 19:32:06 +01:00
import XMonad
import XMonad.Actions.DynamicProjects
2017-12-08 19:32:06 +01:00
import XMonad.Config.Desktop
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.ManageHelpers
2017-12-10 01:14:39 +01:00
import XMonad.Layout.NoBorders (noBorders, smartBorders)
import XMonad.Layout.ResizableTile (ResizableTall(..))
import XMonad.Layout.Spacing
2017-12-12 20:55:08 +01:00
import XMonad.Layout.ToggleLayouts (toggleLayouts)
2017-12-10 01:14:39 +01:00
import XMonad.Util.EZConfig
2020-03-08 08:51:14 +01:00
import qualified Nord as N
2020-03-10 14:51:05 +01:00
import qualified XMonad.Layout.Spacing as SS (Border(..))
2017-12-08 19:32:06 +01:00
-- Tidy modules
import KeyBindings as Keys (modify)
2017-12-12 20:55:08 +01:00
import MouseBindings as Mouse (modify)
2018-05-27 15:39:24 +02:00
import Projects (modify)
import Scratchpad (modify)
2017-12-10 01:14:39 +01:00
2017-12-12 20:55:08 +01:00
--------- toggle btw vvvvvvvvvv or vvvvv
layouts = toggleLayouts fullscreen tiled
2017-12-08 19:32:06 +01:00
where
2020-03-10 14:51:05 +01:00
smallBorder = SS.Border 5 5 5 5
2017-12-11 12:30:50 +01:00
fullscreen = (noBorders Full)
tiled = smarts $ resizableTall ||| (Mirror resizableTall)
2020-03-10 14:51:05 +01:00
smarts = (spacingRaw True smallBorder True smallBorder True) . smartBorders
2017-12-11 12:30:50 +01:00
resizableTall = ResizableTall 1 (5/100) (1/2) []
2017-12-10 01:14:39 +01:00
-- Use the `xprop' tool to get the info you need for these matches.
-- For className, use the second value that xprop gives you.
2017-12-12 20:55:08 +01:00
-------------- Here be the law of windows
2017-12-10 01:14:39 +01:00
myManageHook = composeOne
2020-03-07 16:53:04 +01:00
[ className =? "Pavucontrol" -?> doShift "music"
, className =? "Pinentry" -?> doFloat
, className =? "Steam" -?> doShift "steam"
, className =? "VirtualBox" -?> doFloat
, className =? "csgo_linux64" -?> doShift "csgo"
, className =? "mpv" -?> doFullFloat <+> (doShift "flims")
, className =? "qemu-system-x86_64" -?> doFloat
, className =? "qutebrowser" -?> doShift "web"
2020-03-21 09:50:12 +01:00
, appName =? "Wine System Tray" -?> doShift "wine-tray"
, className =? "battle.net.exe" -?> doShift "battlenet"
2020-03-07 16:53:04 +01:00
, isDialog -?> doCenterFloat
2017-12-10 01:14:39 +01:00
-- Move transient windows to their parent:
, transience
]
2017-12-12 20:55:08 +01:00
------------ build the full config
withConfig =
2018-05-27 15:39:24 +02:00
Projects.modify -- Apply projects config
$ Keys.modify -- Apply keybindings config
$ Mouse.modify -- Apply mouse bindings config
$ Scratchpad.modify -- Apply scratchpad managehook config
$ desktopConfig -- on a default desktop config
2017-12-12 20:55:08 +01:00
{ manageHook = myManageHook <+> manageHook desktopConfig
, layoutHook = desktopLayoutModifiers layouts
2019-04-17 16:14:19 +02:00
, terminal = "/run/current-system/sw/bin/st"
2020-03-08 08:51:14 +01:00
, normalBorderColor = N.backgroundhl
, focusedBorderColor = N.nord9
2017-12-12 20:55:08 +01:00
, borderWidth = 5
}
2017-12-10 01:14:39 +01:00
2017-12-12 20:55:08 +01:00
------ and pass it to xmonad:
main = xmonad withConfig