diff options
Diffstat (limited to 'bin/shenv')
-rwxr-xr-x | bin/shenv | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/shenv b/bin/shenv index b9428b8..d37733f 100755 --- a/bin/shenv +++ b/bin/shenv @@ -1,6 +1,5 @@ #!/bin/sh # simply sources the shrc and runs a shell with that as its environment. # passes through all arguments that sh takes. to be used instead of sh. -XDG_CONFIG_DIR=${XDG_CONFIG_DIR:="$HOME/.config"} -. $XDG_CONFIG_DIR/shrc +. ~/etc/shrc exec sh "$@" |