Adding make command for waybar.

This commit is contained in:
James Patrick 2019-04-20 00:15:00 -04:00
parent e847a40e5d
commit df6c62d54a
1 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,7 @@ cmd_exist = $(shell (command -v $(1) 1>&2 >/dev/null && echo true || echo false)
install: | init update
init: vim_init tmux_init ssh_init
init: vim_init tmux_init ssh_init waybar_init
@ ln -svf $(SRC_DIR)/bin/post-merge $(SRC_DIR)/.git/hooks/post-merge
update: vim_update
@ -20,6 +20,11 @@ tmux_init:
&& ln -svf $(SRC_DIR)/tmux/tmux.conf ~/.tmux.conf \
|| echo " ~/.tmux.conf already exist. Skipping."
waybar_init:
@ [ $(call cmd_exist,'waybar') ] \
&& ! [ -e ~/.config/waybar ] \
&& ln -svf $(SRC_DIR)/waybar ~/.config/waybar \
|| echo " ~/.waybar.conf already exist. Skipping."
vim_init:
@ $(MAKE) -C $(SRC_DIR)/vim init
vim_update: