dotfiles/.config/xmobar/xmobarrc

59 lines
1.9 KiB
Text
Raw Normal View History

2022-10-31 21:00:11 +00:00
Config {font = "Ubuntu bold 10"
2022-10-31 21:00:11 +00:00
, additionalFonts =
[ "Font Awesome 6 Free Solid 10"
, "Font Awesome 6 Free Solid 9"
, "FiraCode Nerd Font Mono 17"
, "FiraCode Nerd Font Mono 10"
, "Font Awesome 6 Free Solid 17"
2022-11-08 17:10:50 +00:00
, "Font Awesome 6 Free Solid 13"
2022-10-31 21:00:11 +00:00
]
2024-09-07 03:05:26 +01:00
, bgColor = "#282828"
, fgColor = "#ebdbb2"
, position = TopH 36
2022-10-31 21:00:11 +00:00
, lowerOnStart = True
, hideOnStart = False
, allDesktops = True
, persistent = False
, iconRoot = "/home/afonso/.config/xmobar/xpm/" -- default: "."
, commands = [
Run XMonadLog
2024-09-07 03:05:26 +01:00
, Run Date "<fc=#A89984>%a, %d %b <fn=1></fn> %H:%M</fc>" "date" 10
, Run Mpris2 "playerctld" ["-t", "<artist> - <title>"] 10
, Run Memory ["-t","<fc=#7C6F64><fn=6></fn></fc> <fc=#B8BB26> <usedratio>%</fc>"] 50
, Run Com "/home/afonso/.config/xmobar/scripts/disk.sh" [] "disk" 100
, Run Com "/home/afonso/.config/xmobar/scripts/cpu_temp.sh" [] "cpu" 50
, Run Com "/home/afonso/.config/xmobar/scripts/battery.sh" [] "battery" 50
, Run Com "/home/afonso/.config/xmobar/scripts/updates.sh" [] "updates" 6000
, Run Com "/home/afonso/.config/xmobar/scripts/trayer-padding-icon.sh" [] "trayerpad" 20
]
2022-10-31 21:00:11 +00:00
, sepChar = "%"
, alignSep = "}{"
, template = " <icon=logo.xpm/> \
\ \
2023-10-04 01:04:22 +01:00
\%XMonadLog%\
2022-10-31 21:00:11 +00:00
\}\
\%date%\
\<hspace=20/>\
2022-11-01 01:42:12 +00:00
\{\
2024-09-07 03:05:26 +01:00
\<fc=#7C6F64>Playing:</fc> <fc=#B8BB26>%mpris2%</fc>\
2022-11-01 01:42:12 +00:00
\ \
\|\
2022-10-31 21:00:11 +00:00
\ \
\%updates%\
\ \
\ \
2022-10-31 21:00:11 +00:00
\%memory%\
\ \
\ \
\%cpu%\
\ \
\ \
2024-09-07 03:05:26 +01:00
\%disk%\
\ \
\ \
\%battery%\
\|\
2022-10-31 21:00:11 +00:00
\%trayerpad%"
}