summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorMike Crute <crutem@amazon.com>2019-05-20 21:25:41 +0200
committerMike Crute <crutem@amazon.com>2019-05-20 21:25:41 +0200
commit2ee5a1745ecab6ac17667781b1e428ba2bb1f4dd (patch)
tree55b9c0380ae9dbd1edf13be006f5594cd5bc4eef /.bashrc
parent0b1870cd6e5a9057b157cb52c6b0a82be0f555b0 (diff)
downloaddotfiles-2ee5a1745ecab6ac17667781b1e428ba2bb1f4dd.tar.bz2
dotfiles-2ee5a1745ecab6ac17667781b1e428ba2bb1f4dd.tar.xz
dotfiles-2ee5a1745ecab6ac17667781b1e428ba2bb1f4dd.zip
Allow user to override timezone
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index e66a881..1e904f9 100644
--- a/.bashrc
+++ b/.bashrc
@@ -96,6 +96,11 @@ export LANG=en_US.UTF-8
96export KRB5CCNAME=FILE:/tmp/krb5cc_`id -ru` 96export KRB5CCNAME=FILE:/tmp/krb5cc_`id -ru`
97export PASSWORD_STORE_ENABLE_EXTENSIONS=true 97export PASSWORD_STORE_ENABLE_EXTENSIONS=true
98 98
99# Allow each user to override their timezone
100if [[ -f "$HOME/.timezone" ]]; then
101 export TZ="$(cat $HOME/.timezone)"
102fi
103
99set bell-style none 104set bell-style none
100set completion-ignore-case on 105set completion-ignore-case on
101 106