From 0f87cdcbe6f2e25f36c62326beb7e39e426befc5 Mon Sep 17 00:00:00 2001 From: Luddifee Date: Thu, 7 Jan 2021 00:01:43 +0100 Subject: [PATCH] added xmobar config file --- .config/xmobar/xmobar.config | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .config/xmobar/xmobar.config diff --git a/.config/xmobar/xmobar.config b/.config/xmobar/xmobar.config new file mode 100644 index 0000000..2a68f85 --- /dev/null +++ b/.config/xmobar/xmobar.config @@ -0,0 +1,39 @@ +Config { font = "xft:monospace" + , additionalFonts = [] + , borderColor = "black" + , border = TopB + , bgColor = "#303030" + , fgColor = "grey" + , alpha = 255 + , position = Static { xpos = 0 , ypos = 0, width = 1920, height = 30 } + , textOffset = -1 + , iconOffset = -1 + , lowerOnStart = True + , pickBroadest = False + , persistent = False + , hideOnStart = False + , iconRoot = "." + , allDesktops = True + , overrideRedirect = True + , commands = [ + Run Cpu ["-L","3","-H","50", "--normal","green","--high","red"] 10 + , Run Memory ["-t","Mem: %"] 10 + , Run Swap [] 10 + , Run Com "uname" ["-s","-r"] "" 36000 + , Run Date "%H:%M - %d.%m.%Y" "date" 10 + , Run Wireless "wlp1s0" [ "-t", "" ] 10 + , Run Battery [ + "-t", ": % ", + "--", + --"-c", "charge_full", + "-O", "AC", + "-o", "Bat", + "-h", "green", + "-l", "red" + ] 10 + ] + , sepChar = "%" + , alignSep = "}{" + , template = " %cpu% | %memory% * %swap% }\ + \{ %wlp1s0wi% | %battery% | %date% | %uname% " +}