Skip to content

Instantly share code, notes, and snippets.

@jclarsson
Created November 19, 2015 12:00
Show Gist options
  • Save jclarsson/887b20295233a079879f to your computer and use it in GitHub Desktop.
Save jclarsson/887b20295233a079879f to your computer and use it in GitHub Desktop.
xfce4-panel-opacity
#!/bin/bash
###################################################
# Makes panel opaque when a window is "Maximized" #
###################################################
KEEPTRUE=1
while [ $KEEPTRUE -eq 1 ]; do
if [ $(bspc query -d $DESKTOP_SEL -T | grep "0,0,0,0 M" | wc -l) -eq 1 ] && [ $(bspc query -d $DESKTOP_SEL -W | wc -l) -ge 1 ]
then
xfconf-query -c xfce4-panel -p /panels/panel-1/background-alpha -s 100
else
xfconf-query -c xfce4-panel -p /panels/panel-1/background-alpha -s 50
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment