mirror of
https://github.com/TheM1Stery/dotfiles.git
synced 2025-04-19 16:51:10 +00:00
improve stuff
This commit is contained in:
parent
da15c9c081
commit
c3d6a2f91c
21
setup.sh
21
setup.sh
@ -21,6 +21,25 @@ else
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "This will move your current dotfiles to .bckp and create a symlink to the dotfiles in this directory"
|
||||
|
||||
|
||||
shopt -s nocasematch
|
||||
status=true
|
||||
while $status; do
|
||||
echo -n "Do you want to install the dotfiles? (y/n) "
|
||||
read -r answer
|
||||
if [[ "$answer" == "y" ]]; then
|
||||
echo "Installing dotfiles"
|
||||
status=false
|
||||
elif [[ "$answer" == "n" ]]; then
|
||||
echo "Aborting"
|
||||
exit 1
|
||||
else
|
||||
echo "Please answer with y or n"
|
||||
fi
|
||||
done
|
||||
|
||||
movePathAndLink nvim
|
||||
movePathAndLink hypr
|
||||
movePathAndLink waybar
|
||||
@ -29,5 +48,5 @@ movePathAndLink kitty
|
||||
|
||||
moveShell
|
||||
|
||||
|
||||
echo "Done"
|
||||
|
||||
|
@ -47,7 +47,7 @@ test -s ~/.alias && . ~/.alias || true
|
||||
|
||||
|
||||
alias vim="nvim"
|
||||
export NEOCONFPATH="$HOME/Documents/init.lua"
|
||||
export DOTFILE = "$HOME/Documents/dotfiles"
|
||||
alias overwatch='lutris lutris:rungame/overwatch-2'
|
||||
|
||||
alias nuget='mono ~/nuget.exe'
|
||||
|
Loading…
Reference in New Issue
Block a user