mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
15 lines
557 B
Bash
Executable file
15 lines
557 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
# script that (re)links all dotfiles during the installation or upgrade.
|
|
# do not run manually
|
|
|
|
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."
|