sync
This commit is contained in:
parent
a6513ce82b
commit
69e4edf646
12 changed files with 87 additions and 19 deletions
17
xmonad/lib/BlueLakeTheme.hs
Normal file
17
xmonad/lib/BlueLakeTheme.hs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
module BlueLakeTheme (blueLakeTheme) where
|
||||
import Theme (Theme(..))
|
||||
import XMonad.Hooks.StatusBar.PP
|
||||
|
||||
blueLakeXmobarPP :: PP
|
||||
blueLakeXmobarPP = def
|
||||
{ ppSep = " • "
|
||||
}
|
||||
|
||||
blueLakeTheme :: Theme
|
||||
blueLakeTheme = Theme { themeName = "Blue Lake"
|
||||
, themeBarConfig = "~/.config/xmobar/blue-lake-xmobarrc"
|
||||
, themeBorderColor = "#23497E"
|
||||
, themeFocusedBorderColor = "#376899"
|
||||
, themeWallpaper = "/home/reo/Wallpapers/lake1.jpg"
|
||||
, themeXmobarPP = blueLakeXmobarPP
|
||||
}
|
||||
17
xmonad/lib/DuskCloudTheme.hs
Normal file
17
xmonad/lib/DuskCloudTheme.hs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
module DuskCloudTheme (duskCloudTheme) where
|
||||
import Theme (Theme(..))
|
||||
import XMonad.Hooks.StatusBar.PP
|
||||
|
||||
duskCloudXmobarPP :: PP
|
||||
duskCloudXmobarPP = def
|
||||
{ ppSep = " • "
|
||||
}
|
||||
|
||||
duskCloudTheme :: Theme
|
||||
duskCloudTheme = Theme { themeName = "Dusk Cloud"
|
||||
, themeBarConfig = "~/.config/xmobar/dusk-cloud-xmobarrc"
|
||||
, themeBorderColor = "#333333"
|
||||
, themeFocusedBorderColor = "#FFFFFF"
|
||||
, themeWallpaper = "/home/reo/Wallpapers/sky.jpg"
|
||||
, themeXmobarPP = duskCloudXmobarPP
|
||||
}
|
||||
|
|
@ -12,6 +12,6 @@ naturalGreenTheme = Theme { themeName = "Natural Green"
|
|||
, themeBarConfig = "~/.config/xmobar/natural-green-xmobarrc"
|
||||
, themeBorderColor = "#425F57"
|
||||
, themeFocusedBorderColor = "#749F82"
|
||||
, themeWallpaper = "/home/reo/Wallpapers/forest1.jpg"
|
||||
, themeWallpaper = "/home/reo/Wallpapers/forest3.png"
|
||||
, themeXmobarPP = naturalGreenXmobarPP
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue