2022-07-04 16:06:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# script that (re)links all dotfiles during the installation or upgrade.
|
|
|
|
# do not run manually
|
|
|
|
|
2022-12-11 09:25:45 +03:00
|
|
|
mkdir -p $HOME/.config/nvim $HOME/.config/alacritty $HOME/.config/mako >/dev/null 2>&1
|
2022-12-22 21:39:38 +03:00
|
|
|
ln -sf $HOME/.dotfiles/configs/.zshrc $HOME/.zshrc
|
|
|
|
ln -sf $HOME/.dotfiles/configs/.profile $HOME/.profile
|
|
|
|
ln -sF $HOME/.dotfiles/configs/nvim $HOME/.config/
|
|
|
|
ln -sF $HOME/.dotfiles/configs/alacritty $HOME/.config/
|
|
|
|
ln -sF $HOME/.dotfiles/configs/sway $HOME/.config/
|
|
|
|
ln -sF $HOME/.dotfiles/configs/waybar $HOME/.config/
|
|
|
|
ln -sF $HOME/.dotfiles/configs/mako $HOME/.config/
|
|
|
|
ln -sF $HOME/.dotfiles/configs/qt5ct $HOME/.config/
|
|
|
|
echo "Dotfiles linked."
|