Move .config content to the root and rename doom folder
This commit is contained in:
parent
741b493376
commit
f5b39a03dd
13 changed files with 0 additions and 0 deletions
17
xmonad/lib/NaturalGreenTheme.hs
Normal file
17
xmonad/lib/NaturalGreenTheme.hs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
module NaturalGreenTheme (naturalGreenTheme) where
|
||||
import Theme (Theme(..))
|
||||
import XMonad.Hooks.StatusBar.PP
|
||||
|
||||
naturalGreenXmobarPP :: PP
|
||||
naturalGreenXmobarPP = def
|
||||
{ ppSep = " • "
|
||||
}
|
||||
|
||||
naturalGreenTheme :: Theme
|
||||
naturalGreenTheme = Theme { themeName = "Natural Green"
|
||||
, themeBarConfig = "~/.config/xmobar/natural-green-xmobarrc"
|
||||
, themeBorderColor = "#425F57"
|
||||
, themeFocusedBorderColor = "#749F82"
|
||||
, themeWallpaper = "/usr/share/backgrounds/gnome/brush-strokes-d.jpg"
|
||||
, themeXmobarPP = naturalGreenXmobarPP
|
||||
}
|
||||
10
xmonad/lib/Theme.hs
Normal file
10
xmonad/lib/Theme.hs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
module Theme ( Theme(..) ) where
|
||||
import XMonad.Hooks.StatusBar.PP
|
||||
|
||||
data Theme = Theme { themeName :: String
|
||||
, themeBarConfig :: String
|
||||
, themeBorderColor :: String
|
||||
, themeFocusedBorderColor :: String
|
||||
, themeWallpaper :: String
|
||||
, themeXmobarPP :: PP
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue