dotfiles/.i3blocks/keyindicator

17 lines
291 B
Bash
Executable File

#!/bin/bash
[[ -z "$instance" ]] && instance=Caps
status=$(xset q | grep -Po "$instance Lock: +(on|off)" | grep -Po "on|off")
if [[ "$status" = "on" ]]
then
color="#99CC99"
else
color="#747369"
fi
instance=${instance//Caps/Maj}
echo "<span foreground=\"$color\">${instance,*}</span>"