From f602343adf83495a7455d96fbf64c944bf5dcfb5 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Tue, 6 Oct 2020 10:09:11 +0200 Subject: Allow custom env in .local/etc/shell --- .config/shell/env | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.config/shell') 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 -- cgit v1.1