diff options
-rw-r--r-- | profile.dot.link | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/profile.dot.link b/profile.dot.link index 487e0ec..a8acc66 100644 --- a/profile.dot.link +++ b/profile.dot.link @@ -457,10 +457,13 @@ if [ -z "$STARTUP_FOLDER" ] && [ -f "/srv/shared/kvmxfile" ]; then STARTUP_FOLDER="/srv/shared" fi +# Only change to the startup folder if it's set +#if [ ! -z "$STARTUP_FOLDER" ]; then +# cd $STARTUP_FOLDER +#fi + # Make sure we start at the startup folder, defaulting to home -if [ ! -z "$STARTUP_FOLDER" ]; then - cd $STARTUP_FOLDER -fi +cd $STARTUP_FOLDER # Include other profiles if [ -d "$HOME/.profile.d" ]; then |