7 lines
188 B
Bash
7 lines
188 B
Bash
|
|
MAIN_KB_CAPS=$(hyprctl devices | grep -B 6 "main: yes" | grep "capsLock" | head -1 | awk '{print $2}')
|
||
|
|
|
||
|
|
if [ "$MAIN_KB_CAPS" = "yes" ]; then
|
||
|
|
echo "Caps Lock active"
|
||
|
|
else
|
||
|
|
echo ""
|
||
|
|
fi
|