diff options
Diffstat (limited to '.config/xmobar')
-rw-r--r-- | .config/xmobar/xmobarrc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.config/xmobar/xmobarrc b/.config/xmobar/xmobarrc new file mode 100644 index 0000000..6aea9d1 --- /dev/null +++ b/.config/xmobar/xmobarrc @@ -0,0 +1,28 @@ +Config { font = "-misc-fixed-*-*-*-*-10-*-*-*-*-*-*-*" + , additionalFonts = [] + , borderColor = "black" + , border = TopB + , bgColor = "black" + , fgColor = "grey" + , alpha = 255 + , position = Bottom + , textOffset = -1 + , iconOffset = -1 + , lowerOnStart = True + , pickBroadest = False + , persistent = False + , hideOnStart = False + , iconRoot = "." + , allDesktops = True + , overrideRedirect = True + , commands = [ + Run Date "%a %d %b %I:%M %p" "date" 10 + , Run Alsa "default" "Master" [] + , Run UnsafeStdinReader + , Run Kbd [] + ] + , sepChar = "%" + , alignSep = "}{" + , template = " %UnsafeStdinReader% }{ %kbd% | %alsa:default:Master% | <fc=#ee9a00>%date%</fc> " + } + |