aboutsummaryrefslogtreecommitdiff
path: root/xmonad
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2025-03-06 17:18:16 -0500
committerBardofSprites <[email protected]>2025-03-06 17:18:16 -0500
commitead0d556c629d5dd5785cf12cb29a4e1f396a315 (patch)
treee0287d1147d9bf8b79a3e3b6f358f27e4c5e9d8d /xmonad
parente742aef2a71ef91891973ea286901bca55a06ee1 (diff)
barebones xmobar config
Diffstat (limited to 'xmonad')
-rw-r--r--xmonad/.config/xmobar/xmobarrc16
1 files changed, 16 insertions, 0 deletions
diff --git a/xmonad/.config/xmobar/xmobarrc b/xmonad/.config/xmobar/xmobarrc
new file mode 100644
index 0000000..a23e651
--- /dev/null
+++ b/xmonad/.config/xmobar/xmobarrc
@@ -0,0 +1,16 @@
+Config {
+ bgColor = "#181818"
+ , fgColor = "#e4e4e4"
+ , border = BottomB
+ , borderColor = "#181818"
+ , font = "xft:Iosevka Comfy-13"
+ , position = TopH 22
+ , commands = [
+ -- Network activity monitor (dynamic interface resolution)
+ Run DynNetwork [] 10 -- network traffic
+ , Run Volume "default" "Master" [] 10
+ , Run Date "%Y-%m-%d (%a) %H:%M" "mydate" 10
+ , Run StdinReader -- text coming from xmonad
+ ]
+ , template = "%StdinReader% }{ %dynnetwork% | %default:Master% | %mydate% "
+}