Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save baronleonardo/206c73e7569722f8e536619a404cdd74 to your computer and use it in GitHub Desktop.

Select an option

Save baronleonardo/206c73e7569722f8e536619a404cdd74 to your computer and use it in GitHub Desktop.
Disable KDE panel shadow. Script to be placed in ~/.kde/Autostart/disable_panel_shadow.sh https://forum.kde.org/viewtopic.php?f=285&t=121592
for WID in `xwininfo -root -tree | sed '/"plasma-desktop": ("Plasma" "Plasma")/!d; s/^ *\([^ ]*\) .*/\1/g'`; do
xprop -id $WID -remove _KDE_NET_WM_SHADOW
done
# or
for WID in `xwininfo -root -tree | sed '/"Plasma": ("plasmashell" "plasmashell")/!d; s/^ *\([^ ]*\) .*/\1/g'`; do
xprop -id $WID -remove _KDE_NET_WM_SHADOW
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment