aboutsummaryrefslogtreecommitdiffstats
path: root/base/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'base/Makefile')
-rw-r--r--base/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/base/Makefile b/base/Makefile
index 6beaf4c..deeaa8c 100644
--- a/base/Makefile
+++ b/base/Makefile
@@ -17,10 +17,25 @@ install:
ln -sf -- ~/.dotfiles/base/faces/$(FACE) ~/.config/face
ln -sf -- .face ~/.face.icon
ln -sf -- .config/face ~/.face
+ if test -L ~/.config/locations; then \
+ test "$$(readlink -- ~/.config/locations)" = ~/.dotfiles/.secrets/locations; \
+ else \
+ test ! -e ~/.config/locations && \
+ ln -s -- ~/.dotfiles/.secrets/locations ~/.config/locations; \
+ fi
+ test ! -d ~/.config/geolocation
+ test ! -d ~/.config/metar
+ test -L ~/.config/locations/current || test ! -e ~/.config/locations/current
+ test -L ~/.config/locations/current || ln -sf default ~/.config/locations/current
+ ln -sf locations/current/geolocation ~/.config/geolocation
+ ln -sf locations/current/metar ~/.config/metar
uninstall:
-unlink -- ~/.config/profile
-unlink -- ~/.config/user-dirs.locale
-unlink -- ~/.profile
+ -unlink -- ~/.config/locations
+ -unlink -- ~/.config/geolocation
+ -unlink -- ~/.config/metar
.PHONY: install uninstall