-
Notifications
You must be signed in to change notification settings - Fork 0
/
.xmobarrc
23 lines (23 loc) · 1.16 KB
/
.xmobarrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Config { font = "xft:RobotoLight :size=9:antialias=true"
, bgColor = "#212121"
, fgColor = "#ffffff"
, position = TopW L 96
, lowerOnStart = True
, commands = [
Run Com "~/dmesg.sh" [] "dmesg" 10
, Run Cpu ["-L","3","-H","50","--normal","green","--high","red"] 10
, Run Network "eth0" ["-L","0","-H","70","--normal","green","--high","red"] 10
, Run Com "/home/vishnu/dotfiles/backlight.sh" [] "backlight" 10
, Run Com "/home/vishnu/dotfiles/battery.sh" [] "battery" 10
, Run Memory ["-t","Mem: <usedratio>%"] 10
, Run Com "/home/vishnu/dotfiles/cputemp.sh" [] "temp" 10
, Run Date "%a %b %_d %l:%M" "date" 10
, Run Com "/home/vishnu/dotfiles/volume.sh" [] "volume" 10
, Run Com "/home/vishnu/dotfiles/capslock.sh" [] "caps" 10
, Run Com "/home/vishnu/dotfiles/touchpad.sh" [] "touchpad" 10
, Run StdinReader
]
, sepChar = "%"
, alignSep = "}{"
, template = " %StdinReader%}{ <fc=#ffffff> Touchpad: %touchpad% | %caps% | Backlight: %backlight% | Batt: %battery% | %cpu%</fc> <fc=#ffffff> | %memory% | Temp: %temp% C | Vol: %volume% </fc> | <fc=#ffffff>%date%</fc> |"
}