aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-10-06 10:09:11 +0200
committerPatrick Spek <p.spek@tyil.nl>2021-08-14 11:59:43 +0200
commitf602343adf83495a7455d96fbf64c944bf5dcfb5 (patch)
tree6252f77c70cc667dad43ef418540e80578f8e570 /.config
parentc14def95efa731423f193a696cb140ac8a00920a (diff)
Allow custom env in .local/etc/shell
Diffstat (limited to '.config')
-rw-r--r--.config/shell/env6
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/shell/env b/.config/shell/env
index 6b72eb7..de2c044 100644
--- a/.config/shell/env
+++ b/.config/shell/env
@@ -112,3 +112,9 @@ tabs -8 > /dev/null
# set the cursor
#export CURSOR_STYLE="\e[?6;14;9;c"
+
+# Load machine-local env file
+if [ -f "$HOME/.local/etc/shell/env" ]
+then
+ . "$HOME/.local/etc/shell/env"
+fi