diff options
| author | Baitinq <[email protected]> | 2022-07-07 04:08:10 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-07 04:08:10 +0200 |
| commit | d54a7336be399a2cbc607a8882921687ac61bd57 (patch) | |
| tree | 377190b2d211687c67e54beb0793f00b810e0a1e | |
| parent | XMonad: Add type signatures (diff) | |
| download | nixos-config-d54a7336be399a2cbc607a8882921687ac61bd57.tar.gz nixos-config-d54a7336be399a2cbc607a8882921687ac61bd57.tar.bz2 nixos-config-d54a7336be399a2cbc607a8882921687ac61bd57.zip | |
XMonad: Change window borders to be like dwm
| -rw-r--r-- | dotfiles/xmonad.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dotfiles/xmonad.hs b/dotfiles/xmonad.hs index 923921e..9b9972b 100644 --- a/dotfiles/xmonad.hs +++ b/dotfiles/xmonad.hs @@ -101,10 +101,10 @@ myLayout = lessBorders OnlyFloat -- Width of the window border in pixels. myBorderWidth :: Dimension -myBorderWidth = 1 +myBorderWidth = 2 myNormalBorderColor :: String -myNormalBorderColor = "#000000" +myNormalBorderColor = "#444444" myFocusedBorderColor :: String myFocusedBorderColor = "#005577" |