Skip to content

Instantly share code, notes, and snippets.

@alunux
Created November 24, 2017 10:41
Show Gist options
  • Save alunux/0e5ea14346a1d04119e6fa16cf405c17 to your computer and use it in GitHub Desktop.
Save alunux/0e5ea14346a1d04119e6fa16cf405c17 to your computer and use it in GitHub Desktop.
Make konsole's background blur (Works on ZSH)
## Blur effect for Konsole ##
if [[ $(ps --no-header -p $PPID -o comm) =~ '^yakuake|konsole$' ]]; then
for wid in $(xdotool search --pid $PPID); do
xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id $wid; done
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment