diff options
author | tom barrett <tom@tombarrett.xyz> | 2024-05-11 21:31:48 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2024-05-12 12:00:27 +0200 |
commit | a642918e5d9df38ee172d37aefe42f40bad80309 (patch) | |
tree | 6e5c552c5b62fc77aa684957af5db6da751c8fc5 /xmobarrc |
good starting point
Diffstat (limited to 'xmobarrc')
-rw-r--r-- | xmobarrc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/xmobarrc b/xmobarrc new file mode 100644 index 0000000..7bd4c08 --- /dev/null +++ b/xmobarrc @@ -0,0 +1,19 @@ +Config + { font = "Hermit 13" + , textOffset = 0 + , borderWidth = 0 + , position = TopH 25 + , bgColor = "#a1b56c" + , fgColor = "#b8b8b8" + , commands = + [ Run Date "%a %d %b %Y %H:%M:%S" "date" 10 + , Run DiskU [("/", "<free>")] ["-L", "1"] 50 + , Run Battery ["-t", "<left>%"] 10 + , Run Cpu ["-t", "<total>%"] 10 + , Run Com "sh" ["-c", "ip -br -4 a | awk '!/lo/ {if ($3) printf $3 }'"] "" 10 + , Run XMonadLog + ] + , sepChar = "%" + , alignSep = "}{" + , template = "%XMonadLog% }{ <fc=#b8b8b8,#181818> %sh% | %cpu% | %disku% | %battery% | %date% </fc>" + } |