diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2014-02-10 23:52:45 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2014-02-10 23:52:45 +1300 |
commit | 5520549245ce27438b37e5aa91cd86762efc0a33 (patch) | |
tree | 960ae607d172afa349e14bbc72f31476fbe1f8e4 /sh/profile.d | |
parent | Use explicit if for condition (diff) | |
download | dotfiles-5520549245ce27438b37e5aa91cd86762efc0a33.tar.gz dotfiles-5520549245ce27438b37e5aa91cd86762efc0a33.zip |
Remove some unnecessary quotes
Diffstat (limited to 'sh/profile.d')
-rw-r--r-- | sh/profile.d/browser.sh | 4 | ||||
-rw-r--r-- | sh/profile.d/editor.sh | 2 | ||||
-rw-r--r-- | sh/profile.d/pager.sh | 2 | ||||
-rw-r--r-- | sh/profile.d/timezone.sh | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/sh/profile.d/browser.sh b/sh/profile.d/browser.sh index 094d2095..3b03b3d6 100644 --- a/sh/profile.d/browser.sh +++ b/sh/profile.d/browser.sh @@ -1,8 +1,8 @@ # Browser if [ -n "$DISPLAY" ]; then - BROWSER='firefox' + BROWSER=firefox else - BROWSER='lynx' + BROWSER=lynx fi export BROWSER diff --git a/sh/profile.d/editor.sh b/sh/profile.d/editor.sh index eaebf3bd..92535aeb 100644 --- a/sh/profile.d/editor.sh +++ b/sh/profile.d/editor.sh @@ -1,5 +1,5 @@ # Set editor -EDITOR='vi' +EDITOR=vi VISUAL=$EDITOR export EDITOR VISUAL diff --git a/sh/profile.d/pager.sh b/sh/profile.d/pager.sh index 7e55a1a9..0874a690 100644 --- a/sh/profile.d/pager.sh +++ b/sh/profile.d/pager.sh @@ -1,4 +1,4 @@ # Set pager -PAGER='less' +PAGER=less export PAGER diff --git a/sh/profile.d/timezone.sh b/sh/profile.d/timezone.sh index 4e6fbc49..d6140d2a 100644 --- a/sh/profile.d/timezone.sh +++ b/sh/profile.d/timezone.sh @@ -1,3 +1,3 @@ -TZ='Pacific/Auckland' +TZ=Pacific/Auckland export TZ |