This commit is contained in:
Tyler Perkins 2022-12-01 18:26:08 -05:00
parent 50467c9b77
commit 65cd11f354

View File

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