From 898792c030468ea10507d1609786273aeec38eb8 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 14 Aug 2013 16:13:01 -0400 Subject: wmii: use [[ when possible --- .config/wmii/include.sh | 4 ++-- 1 file 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 -- cgit v1.2.3