aboutsummaryrefslogtreecommitdiff
path: root/config/ratpoison/paneltoggle
diff options
context:
space:
mode:
Diffstat (limited to 'config/ratpoison/paneltoggle')
-rwxr-xr-xconfig/ratpoison/paneltoggle12
1 files changed, 12 insertions, 0 deletions
diff --git a/config/ratpoison/paneltoggle b/config/ratpoison/paneltoggle
new file mode 100755
index 0000000..5e665bb
--- /dev/null
+++ b/config/ratpoison/paneltoggle
@@ -0,0 +1,12 @@
+#!/bin/sh
+# This shell script is PUBLIC DOMAIN. You may do whatever you want with it.
+
+TOGGLE=$HOME/.toggle
+
+if [ ! -e $TOGGLE ]; then
+ touch $TOGGLE
+ ratpoison -c hidepanel
+else
+ rm $TOGGLE
+ ratpoison -c showpanel
+fi