mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-20 00:36:09 +01:00
8 lines
242 B
Bash
Executable File
8 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
#Script to allow clicking desktop in bspwm even if focus_follows_pointer is enabled
|
|
pkill -USR2 -x sxhkd; \
|
|
bspc config focus_follows_pointer off; \
|
|
xdotool click $@; \
|
|
bspc config focus_follows_pointer on; \
|
|
pkill -USR2 -x sxhkd
|