mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-20 00:36:09 +01:00
8 lines
185 B
Bash
Executable File
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
|