diff options
Diffstat (limited to '.config/common_service.sh')
-rw-r--r-- | .config/common_service.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/common_service.sh b/.config/common_service.sh new file mode 100644 index 0000000..50c34ee --- /dev/null +++ b/.config/common_service.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env sh +: ${TURNSTILE_ENV_DIR:="${HOME}/.config/service-env"} + +. /etc/profile + +for file in /etc/profile.d/*.sh +do + . "$file" +done + +. "$HOME/.profile" + |