1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | -- Imports
import XMonad
import XMonad.Util.EZConfig
import XMonad.StackSet
import XMonad.Layout.Spacing
import XMonad.Layout.BinarySpacePartition
-- Configuration
main = xmonad $ def
{ borderWidth = 3
, terminal = "sakura"
, normalBorderColor = "#58626d"
, focusedBorderColor = "#a9b3bd"
, layoutHook = spacingRaw True (Border 10 10 10 10) True (Border 10 10 10 10) True $ layoutHook def
}
`additionalKeysP`
[ ("M-w", spawn "rofi -show run")
, ("M-f", spawn "firefox")
]
|
x
Notes
Requires:
* Compton
* Sakura
* Firefox
* rofi
distrotube said about 5 months ago
oops
edited about 5 months ago