diff options
| author | Peter Son Struschka <me@peter-struschka.com> | 2020-07-29 16:40:02 +0800 |
|---|---|---|
| committer | Peter Son Struschka <me@peter-struschka.com> | 2020-07-29 16:48:22 +0800 |
| commit | a1d6fc2f3e6ab041cc51cb085ac59a646a126d25 (patch) | |
| tree | b1ca8b11365cd255dd2f93a47dd0e918e1dae16a /xmonad/.config | |
| parent | 556bbd7fd182937e32eb5320a27ba337ac454be0 (diff) | |
| download | dotfiles-a1d6fc2f3e6ab041cc51cb085ac59a646a126d25.tar.gz dotfiles-a1d6fc2f3e6ab041cc51cb085ac59a646a126d25.tar.bz2 dotfiles-a1d6fc2f3e6ab041cc51cb085ac59a646a126d25.tar.lz dotfiles-a1d6fc2f3e6ab041cc51cb085ac59a646a126d25.tar.xz dotfiles-a1d6fc2f3e6ab041cc51cb085ac59a646a126d25.tar.zst dotfiles-a1d6fc2f3e6ab041cc51cb085ac59a646a126d25.zip | |
basics+bspwm+herbstluftwm+i3wm+meta+polybar+xmonad: wm configs overhaul
Created polybar as its own config instead of duplicated in bspwm and
i3's directories allowing them both to be installed.
Created herbstluftwm, xmonad window manager configs.
Added scripts for a status bar, and fixed scripts.
Diffstat (limited to 'xmonad/.config')
| -rw-r--r-- | xmonad/.config/xmonad/xmonad.hi | bin | 0 -> 2270 bytes | |||
| -rw-r--r-- | xmonad/.config/xmonad/xmonad.hs | 17 | ||||
| -rw-r--r-- | xmonad/.config/xmonad/xmonad.o | bin | 0 -> 9824 bytes |
3 files changed, 17 insertions, 0 deletions
diff --git a/xmonad/.config/xmonad/xmonad.hi b/xmonad/.config/xmonad/xmonad.hi Binary files differnew file mode 100644 index 0000000..2f8b94d --- /dev/null +++ b/xmonad/.config/xmonad/xmonad.hi diff --git a/xmonad/.config/xmonad/xmonad.hs b/xmonad/.config/xmonad/xmonad.hs new file mode 100644 index 0000000..5ad9ea9 --- /dev/null +++ b/xmonad/.config/xmonad/xmonad.hs @@ -0,0 +1,17 @@ +import XMonad + +main :: IO () +main = xmonad $ def { + terminal = myTerminal, + modMask = myModMask, + borderWidth = myBorderWidth + } + +myTerminal :: String +myTerminal = "alacritty" + +myModMask :: KeyMask +myModMask = mod4Mask + +myBorderWidth :: Dimension +myBorderWidth = 3 diff --git a/xmonad/.config/xmonad/xmonad.o b/xmonad/.config/xmonad/xmonad.o Binary files differnew file mode 100644 index 0000000..7692453 --- /dev/null +++ b/xmonad/.config/xmonad/xmonad.o |
