Files
dotfiles/bin/toggle-pointer-follows-focus

8 lines
185 B
Bash
Executable File

#!/bin/sh
toggle=$(bspc config pointer_follows_focus | \
awk -vtoggle="true" \
'{ if ($1 == "true") toggle="false"; print toggle }')
bspc config pointer_follows_focus $toggle