From 0454a3536bdef1657510faa1e472fc5aa9d518a7 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 4 Jan 2021 19:47:49 -0800 Subject: git: store configuration under XDG_CONFIG_HOME Since `git` understand `$XDG_CONFIG_HOME`, let's gather all the configuration files there. --- Makefile.linux | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Makefile.linux') diff --git a/Makefile.linux b/Makefile.linux index 256cd33..a5490dd 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -1,18 +1,16 @@ .PHONY: install-linux-symlinks install-linux-symlinks: install-general - @mkdir -p $(HOME)/.config @mkdir -p $(HOME)/.config/systemd $(LN) $(PWD)/Xmodmap $(HOME)/.Xmodmap $(LN) $(PWD)/Xresources $(HOME)/.Xresources $(LN) $(PWD)/config/alacritty $(HOME)/.config/ + $(LN) $(PWD)/config/git/user.personal $(HOME)/.config/git/user $(LN) $(PWD)/config/i3/ $(HOME)/.config/ $(LN) $(PWD)/config/mpd/ $(HOME)/.config/ $(LN) $(PWD)/config/redshift.conf $(HOME)/.config/redshift.conf $(LN) $(PWD)/config/systemd/user/backup.service $(HOME)/.config/systemd/user/backup.service $(LN) $(PWD)/config/systemd/user/ssh-agent.service $(HOME)/.config/systemd/user/ssh-agent.service $(LN) $(PWD)/config/user-dirs.dirs $(HOME)/.config/user-dirs.dirs - $(LN) $(PWD)/emacs.d/ $(HOME)/.config/ - $(LN) $(PWD)/gitconfig.personal $(HOME)/.gitconfig.private $(LN) $(PWD)/pam_environment $(HOME)/.pam_environment $(LN) $(PWD)/xsession $(HOME)/.xsession -- cgit 1.4.1