38 lines
915 B
Haskell
38 lines
915 B
Haskell
--Place this file in your .xmonad/lib directory and import module Colors into .xmonad/xmonad.hs config
|
|
--The easy way is to create a soft link from this file to the file in .xmonad/lib using ln -s
|
|
--Then recompile and restart xmonad.
|
|
|
|
module Colors
|
|
( wallpaper
|
|
, background, foreground, cursor
|
|
, color0, color1, color2, color3, color4, color5, color6, color7
|
|
, color8, color9, color10, color11, color12, color13, color14, color15
|
|
) where
|
|
|
|
-- Shell variables
|
|
-- Generated by 'wal'
|
|
wallpaper="/home/zaske/Pictures/cyberpunk_GruvBox.jpg"
|
|
|
|
-- Special
|
|
background="#101725"
|
|
foreground="#c3c5c8"
|
|
cursor="#c3c5c8"
|
|
|
|
-- Colors
|
|
color0="#101725"
|
|
color1="#4C4D4F"
|
|
color2="#6C6A5F"
|
|
color3="#C15E59"
|
|
color4="#6F8F70"
|
|
color5="#979274"
|
|
color6="#DC9548"
|
|
color7="#c3c5c8"
|
|
color8="#5f6674"
|
|
color9="#4C4D4F"
|
|
color10="#6C6A5F"
|
|
color11="#C15E59"
|
|
color12="#6F8F70"
|
|
color13="#979274"
|
|
color14="#DC9548"
|
|
color15="#c3c5c8"
|