diff options
-rw-r--r-- | .config/wmii/include.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/wmii/include.sh b/.config/wmii/include.sh index 0d639a2..38551aa 100644 --- a/.config/wmii/include.sh +++ b/.config/wmii/include.sh @@ -1,9 +1,9 @@ #!/bin/bash -if [ -z "$WMII_NAMESPACE" ]; then +if [[ -z "$WMII_NAMESPACE" ]]; then export WMII_NAMESPACE="`wmiir namespace`" fi -if [ -z "$WMII_DIR" ]; then +if [[ -z "$WMII_DIR" ]]; then export WMII_DIR="$HOME/n/wmii" fi |