diff options
| author | Freya Murphy <fmurphy@redcom.com> | 2025-06-10 20:53:51 -0400 |
|---|---|---|
| committer | Freya Murphy <fmurphy@redcom.com> | 2025-06-10 20:53:51 -0400 |
| commit | 954d30dba5a427a1d29a578e8e520deb6e3986de (patch) | |
| tree | d4feb084defd2adba10460d4b98b68481c2eff3b /Makefile | |
| download | dotfiles-windows-954d30dba5a427a1d29a578e8e520deb6e3986de.tar.gz dotfiles-windows-954d30dba5a427a1d29a578e8e520deb6e3986de.tar.bz2 dotfiles-windows-954d30dba5a427a1d29a578e8e520deb6e3986de.zip | |
initial
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
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 |