Skip to content

Instantly share code, notes, and snippets.

@HRKings
Created January 15, 2022 03:48
Show Gist options
  • Save HRKings/92ffc6077b61421b49fdfc7addc9b940 to your computer and use it in GitHub Desktop.
Save HRKings/92ffc6077b61421b49fdfc7addc9b940 to your computer and use it in GitHub Desktop.
Kitty Terminal Blur on KDE
#====================================================================================================================
# Kitty Terminal Blur (Use together with 'background_opacity 0.85' on the kitty.conf)
#====================================================================================================================
if [[ $(ps --no-header -p $PPID -o comm) =~ '^kitty$' ]]; 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 &> /dev/null
done
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment