Skip to content

Commit

Permalink
Renamed custom dotfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Mis1eader-dev committed Apr 3, 2023
1 parent 9dbc1e8 commit 85bd674
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ fi
# Auto-completion for bash aliases
sudo apt install -y bash-completion
BASH_COMPLETION_PATH=$HOME/.bash_completion
COMPLETE_ALIAS_PATH="~/.config/complete_alias"
COMPLETE_ALIAS_PATH="~/.config/.complete_alias"
BASH_COMPLETION_DATA=". $COMPLETE_ALIAS_PATH > /dev/null 2>&1"
if ! test -f $BASH_COMPLETION_PATH || ! grep -q "^$BASH_COMPLETION_DATA\$" $BASH_COMPLETION_PATH; then
echo "$BASH_COMPLETION_DATA" >> $BASH_COMPLETION_PATH
Expand Down Expand Up @@ -317,7 +317,7 @@ fi


# Add our custom .profile on top of the existing .profile, by sourcing
PROFILE_PATH="~/.config/profile"
PROFILE_PATH="~/.config/.profile"
PROFILE_DATA=". $PROFILE_PATH"
PROFILE_DEFAULT_PATH=$HOME/.profile
if ! test -f $PROFILE_DEFAULT_PATH || ! grep -q "^$PROFILE_DATA\$" $PROFILE_DEFAULT_PATH; then
Expand All @@ -327,7 +327,7 @@ fi


# Add our custom .bashrc on top of the existing .bashrc, by sourcing
BASHRC_PATH="~/.config/bashrc"
BASHRC_PATH="~/.config/.bashrc"
BASHRC_DATA=". $BASHRC_PATH"
BASHRC_DEFAULT_PATH=$HOME/.bashrc
if ! test -f $BASHRC_DEFAULT_PATH || ! grep -q "^$BASHRC_DATA\$" $BASHRC_DEFAULT_PATH; then
Expand Down

0 comments on commit 85bd674

Please sign in to comment.