refac(prog/xmonad): change border size and color

This commit is contained in:
Dmitriy Pleshevskiy 2022-04-07 18:39:31 +03:00
parent f89043822e
commit cb4c106a75

View file

@ -7,18 +7,18 @@
-- Normally, you'd only override those defaults you care about. -- Normally, you'd only override those defaults you care about.
-- --
import XMonad import Data.Monoid
import XMonad.Hooks.EwmhDesktops import System.Exit
import XMonad.Hooks.ManageDocks import XMonad
import XMonad.Hooks.DynamicLog import XMonad.Hooks.DynamicLog
import XMonad.Hooks.StatusBar import XMonad.Hooks.EwmhDesktops
import XMonad.Hooks.StatusBar.PP import XMonad.Hooks.ManageDocks
import XMonad.Util.Run import XMonad.Hooks.StatusBar
import Data.Monoid import XMonad.Hooks.StatusBar.PP
import System.Exit import XMonad.Util.Run
import qualified XMonad.StackSet as W import qualified Data.Map as M
import qualified Data.Map as M import qualified XMonad.StackSet as W
-- The preferred terminal program, which is used in a binding below and by -- The preferred terminal program, which is used in a binding below and by
-- certain contrib modules. -- certain contrib modules.
@ -35,7 +35,7 @@ myClickJustFocuses = False
-- Width of the window border in pixels. -- Width of the window border in pixels.
-- --
myBorderWidth = 1 myBorderWidth = 3
-- modMask lets you specify which modkey you want to use. The default -- modMask lets you specify which modkey you want to use. The default
-- is mod1Mask ("left alt"). You may also consider using mod3Mask -- is mod1Mask ("left alt"). You may also consider using mod3Mask
@ -57,8 +57,8 @@ myWorkspaces = map show [1..9]
-- Border colors for unfocused and focused windows, respectively. -- Border colors for unfocused and focused windows, respectively.
-- --
myNormalBorderColor = "#dddddd" myNormalBorderColor = "#444"
myFocusedBorderColor = "#ff0000" myFocusedBorderColor = "#f00"
------------------------------------------------------------------------ ------------------------------------------------------------------------
-- Key bindings. Add, modify or remove key bindings here. -- Key bindings. Add, modify or remove key bindings here.
@ -332,4 +332,3 @@ help = unlines ["The default modifier key is 'alt'. Default keybindings:",
"mod-button1 Set the window to floating mode and move by dragging", "mod-button1 Set the window to floating mode and move by dragging",
"mod-button2 Raise the window to the top of the stack", "mod-button2 Raise the window to the top of the stack",
"mod-button3 Set the window to floating mode and resize by dragging"] "mod-button3 Set the window to floating mode and resize by dragging"]