diff options
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 |