diff --git a/i3/i3.dotfile/status.py b/i3/i3.dotfile/status.py index 49cf9a8..a2d2bea 100644 --- a/i3/i3.dotfile/status.py +++ b/i3/i3.dotfile/status.py @@ -45,7 +45,7 @@ status.register("disk", status.register("pulseaudio", format="♪{volume}%{muted}", - color=COLORS['White'], + color_unmuted=COLORS['White'], color_muted=COLORS['Yellow'], muted="M") @@ -83,5 +83,14 @@ status.register("mem", warn_color=COLORS['Yellow'], alert_color=COLORS['Red']) +status.register("keyboard_locks", + format="{caps}", + caps_on="[CapsLock]", + caps_off="") + +status.register("shell", + command="~/.i3/window.sh", + interval=.1) + status.run()