summaryrefslogtreecommitdiffstats
path: root/zshrc
diff options
context:
space:
mode:
authorStefan Ritter <gideonstar@thehappy.de>2009-07-23 00:56:07 +0200
committerStefan Ritter <gideonstar@thehappy.de>2009-07-23 00:56:07 +0200
commit63bfd2a0ab248d6886f38d3f500a8898b1e39ae9 (patch)
treee41c1f306da3ead2becc4de60766f7294a8e2aa4 /zshrc
parent0ab575d26c8c35b996b77f17814ca77d2887cf72 (diff)
Added some features to the wmii statusbar
Diffstat (limited to 'zshrc')
-rw-r--r--zshrc48
1 files changed, 0 insertions, 48 deletions
diff --git a/zshrc b/zshrc
index 329a19e..7144820 100644
--- a/zshrc
+++ b/zshrc
@@ -89,55 +89,7 @@ shot() {
fi
}
-gpdf() {
- xpdf =(gpg --decrypt $1)
-}
-
md() {
mkdir $1
cd $1
}
-
-ausrede() {
- if [ $RANDOM -lt 16384 ]; then
- fortune bofh-excuses
- else
- nc towel.blinkenlights.nl 666
- fi
-}
-
-vm() {
- SLEEP=2
- if [ "$1" = "winxp" ]; then
- VBoxManage startvm "Windows XP Pro SP1" -type vrdp
- sleep $SLEEP
- rdesktop-vrdp -k de localhost
- elif [ "$1" = "freebsd" ]; then
- VBoxManage startvm "FreeBSD 7.1" -type vrdp
- sleep $SLEEP
- rdesktop-vrdp -k de localhost
- elif [ "$1" = "win2003" ]; then
- VBoxManage startvm "Windows Server 2003 Enterprise" -type vrdp
- sleep $SLEEP
- rdesktop-vrdp -k de localhost
- elif [ "$1" = "sid" ]; then
- VBoxManage startvm "Debian Sid" -type vrdp
- sleep $SLEEP
- rdesktop-vrdp -k de localhost
- elif [ "$1" = "" ]; then
- echo "winxp"
- echo "win2003"
- echo "freebsd"
- echo "sid"
- fi
-}
-
-up() {
- if [ -e ./.svn ]; then
- svn up
- elif [ -e ./.git ]; then
- git pull
- else
- echo Kein Repository!
- fi
-}