summaryrefslogtreecommitdiff
path: root/.wmii/fixes.sh
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-01-27 14:43:14 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-01-27 17:31:06 -0500
commit15991190790781d774ae7533fc2287e459943870 (patch)
tree678bcf9177d4e512db8c9b8e9b6fd386c55cd156 /.wmii/fixes.sh
parentbd4948b452a45c70111c51d25b5d51ba75b1116e (diff)
mv .wmii .config/wmii; ln -s .config/wmii .wmii
Diffstat (limited to '.wmii/fixes.sh')
-rw-r--r--.wmii/fixes.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/.wmii/fixes.sh b/.wmii/fixes.sh
deleted file mode 100644
index aa09157..0000000
--- a/.wmii/fixes.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-# Fix various deficiencies in either the shell or the filesystem
-
-##
-# Usage: ls DIRECTORY
-# Linux's 9p kernel module sometimes omits entries in directory listings
-##
-unalias ls &>/dev/null
-ls() {
- real_ls="`which ls` -1F"
- [ $# = 0 ] && set -- "`pwd`"
- f="${1/#${WMII_DIR}/}"
- if [ "$f" = "$1" ]; then
- $real_ls "$f"
- else
- wmiir ls "$f"
- fi
-}
-
-##
-# Usage: setsid cmd [arguments...]
-# I like wmiir's setsid better than linux-utils'
-##
-setsid() { wmiir setsid "$@"; }