dotfiles/.config/xmonad/lib/Theme.hs
2022-10-26 10:59:51 +03:00

10 lines
365 B
Haskell

module Theme ( Theme(..) ) where
import XMonad.Hooks.StatusBar.PP
data Theme = Theme { themeName :: String
, themeBarConfig :: String
, themeBorderColor :: String
, themeFocusedBorderColor :: String
, themeWallpaper :: String
, themeXmobarPP :: PP
}