summaryrefslogtreecommitdiff
path: root/S.sh
blob: cb814ae016aecee8725439220843978ccd022120 (plain)
1
2
3
4
5
6
7
#!/bin/dash
capslock_status=$(xset q | grep "Caps Lock:" | awk '{print $4}')
if [ "$capslock_status" = "on" ]; then
    xdotool mousedown 2
else
    xdotool mouseup 2
fi