diff options
| -rw-r--r-- | aliases.dot.link | 2 | ||||
| -rw-r--r-- | profile.dot.link | 14 |
2 files changed, 13 insertions, 3 deletions
diff --git a/aliases.dot.link b/aliases.dot.link index 09a5536..febfbcb 100644 --- a/aliases.dot.link +++ b/aliases.dot.link @@ -61,8 +61,10 @@ alias tig="tig --all" alias upsup="up ; sup" alias fix="commit Fix: " alias feat="commit Feat: " +alias chore="commit Chore: " alias rfix="rcommit Fix: " alias rfeat="rcommit Feat: " +alias rchore="rcommit Chore: " # Calendar alias xcal="xcal.rb" diff --git a/profile.dot.link b/profile.dot.link index 487e0ec..c739034 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 @@ -485,3 +488,8 @@ fi #if [ ! -z "$STARTUP" ]; then # $STARTUP #fi + +# Clear the screen +if [ ! -z "$DISPLAY" ]; then + clear +fi |
