]> code.delx.au - mediapc-tools/blob - xfdesktop-focus-fix
README
[mediapc-tools] / xfdesktop-focus-fix
1 #!/bin/bash
2
3 function has_active_window {
4 xprop -root -f _NET_ACTIVE_WINDOW 32c ' $0\n' _NET_ACTIVE_WINDOW | awk '{ exit $2 == 0 }'
5 }
6
7 if ! has_active_window; then
8 xdotool search --onlyvisible --class xfdesktop windowfocus
9 fi