52 lines
1.2 KiB
Bash
Executable File
52 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Let's make the link for mpd
|
|
|
|
echo "Making links for MPD"
|
|
mkdir -p ~/.config/mpd
|
|
ln -sf $PWD/.config/mpd/mpd.conf ~/.config/mpd/mpd.conf
|
|
echo "MPD Links... Done."
|
|
|
|
# Links for ncmpcpp
|
|
|
|
echo "Making links for ncmpcpp"
|
|
mkdir -p ~/.config/ncmpcpp
|
|
ln -sf $PWD/.config/ncmpcpp/config ~/.config/ncmpcpp/config
|
|
echo "ncmpcpp links... Done."
|
|
|
|
# Links for nvim
|
|
|
|
echo "Making links for NVIM"
|
|
ln -sfT $PWD/.config/nvim ~/.config/nvim
|
|
echo "NVIM links... Done."
|
|
|
|
# Links for Zed
|
|
echo "Making links for Zed"
|
|
ln -sf $PWD/.config/zed/settings.json ~/.config/zed/settings.json
|
|
echo "Zed links... Done."
|
|
|
|
# Links for fastfetch
|
|
|
|
echo "Making links for fastfetch"
|
|
ln -sfT $PWD/.config/fastfetch ~/.config/fastfetch
|
|
echo "fastfetch links... Done."
|
|
|
|
# Link for scripts
|
|
|
|
echo "Making links for scripts."
|
|
ln -sfT $PWD/.config/scripts ~/.config/scripts
|
|
echo "scripts links... Done."
|
|
|
|
# Link for dg-shell
|
|
|
|
echo "Making links for shell"
|
|
ln -sf $PWD/.config/.dg-shell.zsh ~/.config/.dg-shell.zsh
|
|
ln -sf $PWD/.zshrc ~/.zshrc
|
|
echo "Shell links... Done."
|
|
|
|
# Link for dg-bash
|
|
echo "Making Links for bash"
|
|
ln -sfT $PWD/.config/dg-bash ~/.config/dg-bash
|
|
ln -sf $PWD/.bashrc ~/.bashrc
|
|
echo "Bash links... Done."
|