From 86363bc05556dcb359b7af15f3098f613d0864ad Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 12 Oct 2013 19:16:42 -0400 Subject: fix typo in lib/xdg.sh --- .local/lib/xdg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/lib/xdg.sh b/.local/lib/xdg.sh index 44aeee2..2241d2e 100644 --- a/.local/lib/xdg.sh +++ b/.local/lib/xdg.sh @@ -8,7 +8,7 @@ [[ -n $XDG_DATA_HOME ]] || export XDG_DATA_HOME="$HOME/.local/share" [[ -n $XDG_CONFIG_HOME ]] || export XDG_CONFIG_HOME="$HOME/.config" [[ -n $XDG_DATA_DIRS ]] || export XDG_DATA_DIRS="/usr/local/share/:/usr/share/" -[[ -n $XDG_CONFIG_IRS ]] || export XDG_CONFIG_DIRS="/etc/xdg" +[[ -n $XDG_CONFIG_DIRS ]] || export XDG_CONFIG_DIRS="/etc/xdg" [[ -n $XDG_CACHE_HOME ]] || export XDG_CACHE_HOME="$HOME/.cache" # Check if XDG_RUNTIME_DIR is set, but has a bogus setting -- cgit v1.2.3 From 866a5b46f2112e7f32c2ee842233fb64c268d610 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 12 Oct 2013 19:18:04 -0400 Subject: normalize indentation in ssh/config --- .config/ssh/config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/ssh/config b/.config/ssh/config index 894af44..c020c5e 100644 --- a/.config/ssh/config +++ b/.config/ssh/config @@ -5,12 +5,12 @@ Host * Compression yes Host lore - HostName lore.cs.purdue.edu - User shumakl + HostName lore.cs.purdue.edu + User shumakl Host data - HostName data.cs.purdue.edu - User shumakl + HostName data.cs.purdue.edu + User shumakl Host repo Port 1863 -- cgit v1.2.3 From ab764565762ea507c642c4c422d5980b06279c9c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 12 Oct 2013 19:19:27 -0400 Subject: wmii-hg: set the WMII_DIR to include DISPLAY, use tab for indent --- .config/wmii-hg/include.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/wmii-hg/include.sh b/.config/wmii-hg/include.sh index 38551aa..bd9456f 100644 --- a/.config/wmii-hg/include.sh +++ b/.config/wmii-hg/include.sh @@ -1,10 +1,10 @@ #!/bin/bash if [[ -z "$WMII_NAMESPACE" ]]; then - export WMII_NAMESPACE="`wmiir namespace`" + export WMII_NAMESPACE="`wmiir namespace`" fi if [[ -z "$WMII_DIR" ]]; then - export WMII_DIR="$HOME/n/wmii" + export WMII_DIR="$HOME/n/wmii${DISPLAY}" fi . util.sh -- cgit v1.2.3