dotfiles/scripts/rofi-plasma-blur.sh
2021-09-27 17:13:41 -05:00

8 lines
247 B
Bash
Executable file

#!/bin/bash
if [[ $(ps --no-header -p $PPID -o comm) =~ '^yakuake|dolphin$' ]]; 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