aboutsummaryrefslogtreecommitdiff
path: root/ratpoison/paneltoggle
diff options
context:
space:
mode:
Diffstat (limited to 'ratpoison/paneltoggle')
-rwxr-xr-xratpoison/paneltoggle12
1 files changed, 0 insertions, 12 deletions
diff --git a/ratpoison/paneltoggle b/ratpoison/paneltoggle
deleted file mode 100755
index 5e665bb..0000000
--- a/ratpoison/paneltoggle
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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