You are not logged in.
Little stupid one for people with large screens who want to concentrate on active window by hiding all others with a key stroke and want them back later with another stroke
#!/bin/bash
# toggles shade inactive
opacity=`xfconf-query -c xfwm4 -p /general/inactive_opacity`
if [ $opacity -eq "100" ]; then
xfconf-query -c xfwm4 -p /general/inactive_opacity -s 0
else
xfconf-query -c xfwm4 -p /general/inactive_opacity -s 100
fi
# changes value in file
# ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
bye
Salvatore
Offline
[ Generated in 0.006 seconds, 7 queries executed - Memory usage: 509.28 KiB (Peak: 529.96 KiB) ]