Created
November 24, 2017 10:41
-
-
Save alunux/0e5ea14346a1d04119e6fa16cf405c17 to your computer and use it in GitHub Desktop.
Make konsole's background blur (Works on ZSH)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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