-
-
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
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
| 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