This commit is contained in:
Tyler Perkins 2022-12-01 18:26:08 -05:00
parent 50467c9b77
commit 65cd11f354
1 changed files with 22 additions and 22 deletions

View File

@ -14,7 +14,7 @@ install :
@which vim > /dev/null 2>&1
@if [ $$? -eq 0 ]; then \
echo "vim found! Installing .vimrc ..."; \
[ -f ~/.vimrc ] && mv ~/vimrc ~/.vimrc.old; \
[ -f ~/.vimrc ] && mv ~/.vimrc ~/.vimrc.old; \
cp $(SRC)/vim/vimrc ~/.vimrc; \
fi
#bash
@ -34,14 +34,14 @@ install :
cp $(SRC)/calcurse/keys ~/.config/calcurse/keys; \
fi
#newsboat
@which newsboat > /dev/null 2>&1
@if [ $$? -eq 0 ]; then \
echo "newsboat found! Installing config and urls..."; \
[ -f ~/.newsboat/config ] && mv ~/.newsboat/config ~/.newsboat/config.old; \
cp $(SRC)/newsboat/config ~/.newsboat/config; \
[ -f ~/.newsboat/urls ] && mv ~/.newsboat/urls ~/.newsboat/urls.old; \
cp $(SRC)/newsboat/urls ~/.newsboat/urls; \
fi
#@which newsboat > /dev/null 2>&1
#@if [ $$? -eq 0 ]; then \
# echo "newsboat found! Installing config and urls..."; \
# [ -f ~/.newsboat/config ] && mv ~/.newsboat/config ~/.newsboat/config.old; \
# cp $(SRC)/newsboat/config ~/.newsboat/config; \
# [ -f ~/.newsboat/urls ] && mv ~/.newsboat/urls ~/.newsboat/urls.old; \
# cp $(SRC)/newsboat/urls ~/.newsboat/urls; \
#fi
#mpv
@which mpv > /dev/null 2>&1
@if [ $$? -eq 0 ]; then \
@ -50,19 +50,19 @@ install :
cp $(SRC)/mpv/mpv.conf ~/.config/mpv/mpv.conf; \
fi
#compton
@which compton > /dev/null 2>&1
@if [ $$? -eq 0 ]; then \
echo "compton found! Installing config, changes will not take effect till compton is restarted..."; \
[ -f ~/.config/compton.conf ] && mv ~/.config/compton.conf ~/.config/compton.conf.old; \
cp $(SRC)/compton/compton.conf ~/.config/compton.conf; \
fi
#sc-im
@which sc-im > /dev/null 2>&1
@if [ $$? -eq 0 ];then \
echo "sc-im found! Installing config..."; \
[ -f ~/.config/sc-im/scimrc ] && mv ~/.config/sc-im/scimrc ~/.config/sc-im/scimrc.old; \
cp $(SRC)/sc-im/scimrc ~/.config/sc-im/scimrc; \
fi
#@which compton > /dev/null 2>&1
#@if [ $$? -eq 0 ]; then \
# echo "compton found! Installing config, changes will not take effect till compton is restarted..."; \
# [ -f ~/.config/compton.conf ] && mv ~/.config/compton.conf ~/.config/compton.conf.old; \
# cp $(SRC)/compton/compton.conf ~/.config/compton.conf; \
#fi
##sc-im
#@which sc-im > /dev/null 2>&1
#@if [ $$? -eq 0 ];then \
# echo "sc-im found! Installing config..."; \
# [ -f ~/.config/sc-im/scimrc ] && mv ~/.config/sc-im/scimrc ~/.config/sc-im/scimrc.old; \
# cp $(SRC)/sc-im/scimrc ~/.config/sc-im/scimrc; \
#fi
#aerc
@which aerc > /dev/null 2>&1
@if [ $$? -eq 0 ]; then \