From d490287de55176b75e173681c372c5a165137dc5 Mon Sep 17 00:00:00 2001 From: Ayush Mukherjee Date: Wed, 1 Dec 2021 08:58:47 +0530 Subject: [PATCH] fix "too many levels of symlink" error lol --- link.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/link.sh b/link.sh index e49a193..44822cc 100755 --- a/link.sh +++ b/link.sh @@ -1,14 +1,14 @@ #!/bin/sh # Symlinks all the dotfiles to the necessary places. -ln -s alacritty ~/.config -ln -s .bashrc ~/.bashrc -ln -s dunst ~/.config -ln -s i3 ~/.config -ln -s makepkg.conf ~/.config -ln -s nvim ~/.config -ln -s picom ~/.config -ln -s polybar ~/.config -ln -s .tmux.conf ~/.tmux.conf -ln -s .xinitrc ~/.xinitrc -ln -s .Xresources ~/.Xresources +ln -s $(pwd)/alacritty ~/.config +ln -s $(pwd)/.bashrc ~/.bashrc +ln -s $(pwd)/dunst ~/.config +ln -s $(pwd)/i3 ~/.config +ln -s $(pwd)/makepkg.conf ~/.config +ln -s $(pwd)/nvim ~/.config +ln -s $(pwd)/picom ~/.config +ln -s $(pwd)/polybar ~/.config +ln -s $(pwd)/.tmux.conf ~/.tmux.conf +ln -s $(pwd)/.xinitrc ~/.xinitrc +ln -s $(pwd)/.Xresources ~/.Xresources