new environment setup

This commit is contained in:
Wryn Wagner
2020-01-08 12:40:53 -07:00
parent c81f237993
commit c4ed1fb8d8
8 changed files with 73 additions and 42 deletions

10
env/env.sh vendored Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
# Default shell environment
LOCAL_OVERRIDES="$HOME/.config/wryn/env.sh"
[ -f "$LOCAL_OVERRIDES" ] \
&& source "$LOCAL_OVERRIDES" \
|| {
touch $LOCAL_OVERRIDES \
&& echo '#!/bin/sh' > $LOCAL_OVERRIDES \
&& echo '# Local overrides of .wryn environment variables '>> $LOCAL_OVERRIDES
}