comments
This commit is contained in:
parent
d8f2af878b
commit
75c4075210
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -6,28 +6,33 @@ MAKEFLAGS += --no-print-directory
|
|||
|
||||
all: full-sync
|
||||
|
||||
# Pull latest changes
|
||||
refresh:
|
||||
@$(VC) pull
|
||||
|
||||
# Pull and sync
|
||||
full-sync:
|
||||
@$(MAKE) refresh
|
||||
@$(MAKE) sync
|
||||
|
||||
# === All platforms ==
|
||||
|
||||
# .config
|
||||
sync-dotconfig:
|
||||
@mkdir -p $(HOME)/.config/fish/conf.d
|
||||
@mkdir -p $(HOME)/.config/fish/functions
|
||||
|
||||
@echo .config directory synced!
|
||||
|
||||
|
||||
# .emacs.d
|
||||
sync-emacs:
|
||||
@echo Emacs config synced!
|
||||
|
||||
# .mozilla
|
||||
sync-mozilla:
|
||||
@echo Firefox config synced!
|
||||
|
||||
# .unison
|
||||
sync-unison:
|
||||
@echo Unison preferences synced!
|
||||
|
||||
|
|
Loading…
Reference in a new issue