Summary Files CommitsBranches @commit@diff
path: root /.a /toggle-desktop.sh
blob: b5906bcbadf41b3cd4f307d3d98741e5741658b8 (plain ) (blame )
1
2
3
4
5
6
7
#!/bin/bash

if xprop -root _NET_SHOWING_DESKTOP | egrep '= 1' > /dev/null; then
	wmctrl -k off
else
	wmctrl -k on
fi