2019-12-31 10:28:42 +01:00
|
|
|
usage:
|
2019-12-31 09:48:38 +01:00
|
|
|
@echo ""
|
|
|
|
@echo "usage:"
|
|
|
|
@echo ""
|
2019-12-31 10:28:42 +01:00
|
|
|
@echo "* make install -- to install dotfiles"
|
|
|
|
@echo "* make reinstall -- to reinstall & prune obsolete symlinks"
|
|
|
|
@echo "* make delete -- to delete dotfiles"
|
|
|
|
@echo "* make update -- get latest version from gitlab"
|
2019-12-31 09:48:38 +01:00
|
|
|
@echo ""
|
|
|
|
|
2019-12-31 10:28:42 +01:00
|
|
|
install:
|
2019-12-31 09:48:38 +01:00
|
|
|
mkdir -p ~/.config
|
|
|
|
|
2019-12-31 10:28:42 +01:00
|
|
|
stow git
|
2019-12-31 09:48:38 +01:00
|
|
|
stow imapfilter
|
2019-12-31 10:28:42 +01:00
|
|
|
stow mbsync
|
|
|
|
stow msmtp
|
2019-12-31 09:48:38 +01:00
|
|
|
stow mutt
|
2019-12-31 10:28:42 +01:00
|
|
|
stow notmuch
|
2019-12-31 09:48:38 +01:00
|
|
|
stow nvim
|
|
|
|
stow tmux
|
2020-01-02 03:36:00 +01:00
|
|
|
stow fish
|
2020-10-10 10:33:01 +02:00
|
|
|
stow alacritty
|
2019-12-31 09:48:38 +01:00
|
|
|
|
2019-12-31 10:28:42 +01:00
|
|
|
reinstall:
|
|
|
|
|
|
|
|
stow -R git
|
|
|
|
stow -R imapfilter
|
|
|
|
stow -R mbsync
|
|
|
|
stow -R msmtp
|
|
|
|
stow -R mutt
|
|
|
|
stow -R notmuch
|
|
|
|
stow -R nvim
|
|
|
|
stow -R tmux
|
2020-01-02 03:36:00 +01:00
|
|
|
stow -R fish
|
2020-10-10 10:33:01 +02:00
|
|
|
stow -R alacritty
|
2019-12-31 10:28:42 +01:00
|
|
|
|
|
|
|
delete:
|
|
|
|
|
|
|
|
stow -D git
|
|
|
|
stow -D imapfilter
|
|
|
|
stow -D mbsync
|
|
|
|
stow -D msmtp
|
|
|
|
stow -D mutt
|
|
|
|
stow -D notmuch
|
|
|
|
stow -D nvim
|
|
|
|
stow -D tmux
|
2020-01-02 03:36:00 +01:00
|
|
|
stow -D fish
|
2020-10-10 10:33:01 +02:00
|
|
|
stow -D alacritty
|
2019-12-31 10:28:42 +01:00
|
|
|
|
2019-12-31 09:48:38 +01:00
|
|
|
update:
|
2019-12-31 10:28:42 +01:00
|
|
|
|
2019-12-31 09:48:38 +01:00
|
|
|
git pull --verbose
|
2019-12-31 10:28:42 +01:00
|
|
|
git submodule update --init --recursive
|
2019-12-31 09:48:38 +01:00
|
|
|
|
2019-12-31 10:28:42 +01:00
|
|
|
all:
|
|
|
|
usage
|