diff options
author | Franck Cuny <franck@fcuny.net> | 2021-09-08 19:35:23 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-09-08 19:35:23 -0700 |
commit | 480dd4688b20be3b69b54043d5e5d3df713926c0 (patch) | |
tree | ef71f35560bc37ddf1d1f3e0881f250884d47bc1 /Makefile | |
parent | emacs: get rid of mapping for sourcegraph (diff) | |
download | emacs.d-480dd4688b20be3b69b54043d5e5d3df713926c0.tar.gz |
linux: remove configurations specific to linux
They are all handled by the repository `linux-desktop`. It's easier to have a different repository for this bits of configs.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | Makefile.darwin | 6 | ||||
-rw-r--r-- | Makefile.linux | 17 |
3 files changed, 0 insertions, 29 deletions
diff --git a/Makefile b/Makefile index 8323e15..4ff03ea 100644 --- a/Makefile +++ b/Makefile @@ -2,12 +2,6 @@ OS := $(shell uname -s) LN = @ln -sf -ifeq ($(OS),Darwin) -include Makefile.darwin -else -include Makefile.linux -endif - .PHONY: install-general install-general: @mkdir -p $(HOME)/.config diff --git a/Makefile.darwin b/Makefile.darwin deleted file mode 100644 index 290a48b..0000000 --- a/Makefile.darwin +++ /dev/null @@ -1,6 +0,0 @@ -.PHONY: install-darwin-symlinks -install-darwin-symlinks: install-general - $(LN) $(PWD)/config/git/user.work $(HOME)/.config/git/user - $(LN) $(PWD)/config/emacs $(HOME)/.emacs.d - -install: install-darwin-symlinks diff --git a/Makefile.linux b/Makefile.linux deleted file mode 100644 index a5490dd..0000000 --- a/Makefile.linux +++ /dev/null @@ -1,17 +0,0 @@ -.PHONY: install-linux-symlinks -install-linux-symlinks: install-general - @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)/pam_environment $(HOME)/.pam_environment - $(LN) $(PWD)/xsession $(HOME)/.xsession - -install: install-linux-symlinks |