X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/ba37fa63e8cdedbe958ab51a6aaddcfa4ed2f65d..1b8b1df5087accaba1f62a1f9c307860cfe765ba:/Makefile diff --git a/Makefile b/Makefile index 033358f..8af2d32 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,72 @@ APATH := $(realpath .) FILES := bin -DOTFILES := aliases bash* conky* flexget git* goobookrc msmtp* mutt ncmpcpp offlineimap* profile vim* weechat xbindkeysrc Xresources xprofile zprofile zshrc -CONFIGFILES := compton.conf mimeo.conf mpd retroarch xkb zsh +DOTFILES := conky* goobookrc msmtp* mutt profile tmux.conf weechat Xresources +CONFIGFILES := aliases compton.conf git mpv offlineimap ranger retroarch xbindkeys xkb .PHONY: install $(FILES) $(DOTFILES) $(CONFIGFILES) install: $(FILES) $(DOTFILES) $(CONFIGFILES) +~/.config: + mkdir -p ~/.config + +vim: + ln -sfT $(APATH)/vim ~/.config/vim + mkdir -p ~/.local/share/vim + git clone https://github.com/gmarik/vundle ~/.local/share/vim/vundle +.PHONY: vim + +awesome: ~/.config + ln -sfT $(APATH)/awesome ~/.config/awesome +.PHONY: awesome + +qutebrowser: ~/.config + ln -sfT $(APATH)/qutebrowser ~/.config/qutebrowser + mkdir -p ~/downloads +.PHONY: qutebrowser + +mpd: systemd + ln -sfT $(APATH)/mpd ~/.config/mpd + mkdir -p ~/.local/share/mpd/playlists + systemctl --user enable mpd + systemctl --user start mpd +.PHONY: mpd + +ncmpcpp: + ln -sfT $(APATH)/ncmpcpp ~/.config/ncmpcpp + mkdir -p ~/.local/share/mpd/lyrics +.PHONY: ncmpcpp + +systemd: + ln -sfT $(APATH)/$@ ~/.config/$@ +.PHONY: systemd + +gnupg: systemd + ln -sfT $(APATH)/$@ ~/.config/$@ + systemctl --user enable gpg-agent.socket gpg-agent-extra.socket gpg-agent-browser.socket dirmngr.socket + systemctl --user start gpg-agent.socket gpg-agent-extra.socket gpg-agent-browser.socket dirmngr.socket +.PHONY: gnupg + +zsh: + ln -sfT $(APATH)/zshrc ~/.zshrc + ln -sfT $(APATH)/zprofile ~/.zprofile + ln -sfT $(APATH)/zshenv ~/.zshenv + ln -sfT $(APATH)/zsh ~/.config/zsh + mkdir -p ~/.cache/zsh +.PHONY: zsh + +xprofile: + ln -sfT $(APATH)/xprofile ~/.xprofile +.PHONY: xprofile + +dircolors: + ln -sfT $(APATH)/dircolors ~/.config/dircolors +.PHONY: dircolors + +urxvt: + ln -sfT $(APATH)/urxvt ~/.config/urxvt +.PHONY: urxvt + $(FILES): @if [[ -e ~/$@ && ! -L ~/$@ ]]; then \ if [[ -d $@ ]]; then \ @@ -29,7 +89,7 @@ $(DOTFILES): fi; ln -sfT $(APATH)/$@ ~/.$@ -$(CONFIGFILES): +$(CONFIGFILES): ~/.config @if [[ -e ~/.config/$@ && ! -L ~/.config/$@ ]]; then \ if [[ -d .config/$@ ]]; then \ cp -r ~/.config/$@/* $@; \