This commit is contained in:
reo 2026-01-14 21:35:10 +03:00
parent a6513ce82b
commit 69e4edf646
12 changed files with 87 additions and 19 deletions

View 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
}