From 954d30dba5a427a1d29a578e8e520deb6e3986de Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 10 Jun 2025 20:53:51 -0400 Subject: initial --- Makefile | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..189a8e7 --- /dev/null +++ b/Makefile @@ -0,0 +1,38 @@ + +# glazewm +FILES += .glzr/glazewm/config.yaml + +# zebar +FILES += .glzr/zebar/bar/bar.zebar.json +FILES += .glzr/zebar/bar/index.html +FILES += .glzr/zebar/bar/styles.css +FILES += .glzr/zebar/settings.json + +# windows terminal +FILES += AppData/Local/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/settings.json + +# komorebi +FILES += .config/whkdrc +FILES += komorebi.json + +MOUNT := /mnt/c/Users/fmurphy +LOCAL := fmurphy + +.SILENT: +.PHONY: repo install + +repo: + for file in $(FILES); do \ + mount="$(MOUNT)/$$file"; \ + local="$(LOCAL)/$$file"; \ + mkdir -p $$(dirname "$$local"); \ + cp $$mount $$local; \ + done + +install: + for file in $(FILES); do \ + mount="$(MOUNT)/$$file"; \ + local="$(LOCAL)/$$file"; \ + mkdir -p $$(dirname "$$mount"); \ + cp $$local $$mount; \ + done -- cgit v1.2.3-freya