]> arthur.barton.de Git - ax-zsh.git/blobdiff - core/30_env/30_env.zprofile
std_env: Set CLICOLOR=1 (if not set already)
[ax-zsh.git] / core / 30_env / 30_env.zprofile
index bf646f4dffbbdca4f660cf178eea8c3f204b1574..781a9ecefc88e43b47e63caa286a44a122c091a9 100644 (file)
@@ -1,9 +1,16 @@
 # AX-ZSH: Alex' Modular ZSH Configuration
 # 30_env.zprofile: Setup environment
 
+# Setup time zone
+if [[ -z "$TZ" && -r "/etc/timezone" ]]; then
+       TZ=$(<"/etc/timezone") export TZ
+fi
+
 # Setup XDG cache directory
 if [[ -z "$XDG_CACHE_HOME" ]]; then
        XDG_CACHE_HOME="$LOCAL_HOME/.cache"
+fi
+if [[ ! -d "$XDG_CACHE_HOME" ]]; then
        mkdir -p "$XDG_CACHE_HOME"
        chmod 0700 "$XDG_CACHE_HOME"
 fi
@@ -12,6 +19,8 @@ export XDG_CACHE_HOME
 # Setup XDG runtime directory
 if [[ -z "$XDG_RUNTIME_DIR" ]]; then
        XDG_RUNTIME_DIR="${TMPDIR:-/tmp/${UID}-runtime-dir}"
+fi
+if [[ ! -d "$XDG_RUNTIME_DIR" ]]; then
        mkdir -p "$XDG_RUNTIME_DIR"
        chmod 0700 "$XDG_RUNTIME_DIR"
 fi
@@ -20,6 +29,8 @@ export XDG_RUNTIME_DIR
 # Setup ZSH cache directory
 if [[ -z "$ZSH_CACHE_DIR" ]]; then
        ZSH_CACHE_DIR="$XDG_CACHE_HOME/zsh"
+fi
+if [[ ! -d "$ZSH_CACHE_DIR" ]]; then
        mkdir -p "$ZSH_CACHE_DIR"
        chmod 0700 "$ZSH_CACHE_DIR"
 fi