From 41e40fada15dfab455b02e51407feaaa2db0ebb2 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 1 Mar 2021 03:44:51 -0500 Subject: remove hush configuration --- Makefile.hush | 65 ----------------------------------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 Makefile.hush (limited to 'Makefile.hush') diff --git a/Makefile.hush b/Makefile.hush deleted file mode 100644 index f2f3f5d..0000000 --- a/Makefile.hush +++ /dev/null @@ -1,65 +0,0 @@ -INSTALL := \ - .config/alacritty/alacritty.yml \ - .config/darksky/api \ - .config/i3/browser-workspace.json \ - .config/i3/config \ - .config/i3/signal-workspace.json \ - .config/i3/terminal-workspace.json \ - .config/i3status/config \ - .config/msmtp/config \ - .config/offlineimap/config \ - .config/offlineimap/pass.py \ - .config/perspektiv/config.toml \ - .config/touchegg/touchegg.conf \ - .notmuch-config \ - .xbindkeysrc \ - .Xdefaults \ - .xinitrc \ - .xprofile \ - .Xmodmap \ - .mpdscribble \ - $(patsubst %,.%,$(wildcard services/available/*/run)) \ - $(patsubst %,.%,$(wildcard services/available/*/log/run)) - -EMPTYDIRS := \ - $(patsubst services/available/%,.log/%,$(wildcard services/available/*)) \ - Maildir \ - .cache/mpd \ - .config/mpd/playlists - -INSTALL_CUSTOM := \ - $(patsubst services/available/%,$(INTO)/.services/enabled/%,$(wildcard services/available/*)) \ - /var/spool/cron/$(USER) \ - $(INTO)/Maildir/.notmuch/hooks/post-new - -BUILD := \ - config/alacritty/alacritty.yml \ - mpdscribble/mpdscribble.conf - -install :: - @chmod 600 config/msmtp/config - -clean :: - @crontab -r - -/var/spool/cron/$(USER) : crontab - @crontab $< - -$(INTO)/Maildir/.notmuch/hooks/post-new: notmuch/hooks/post-new - @[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak - $(MKDIR) $(INTO)/Maildir/.notmuch/hooks - $(LN) $(PWD)/$< $@ - -$(INTO)/.services/enabled/% : services/available/% - $(MKDIR) $(dir $<) - $(LN) ../available/$(notdir $<) $@ - -config/alacritty/alacritty.yml : config/alacritty/alacritty.yml.hush - $(LN) $(notdir $<) $@ - -config/darksky/api : - rbw get darksky.net api > $@ - -mpdscribble/mpdscribble.conf : mpdscribble/mpdscribble.conf.tmpl - pass="$$(rbw get last.fm doyster)" &&\ - perl -E'while () { if (/^password =/) { say "password = $$ARGV[0]" } else { print } }' "$$pass" < $< > $@ -- cgit v1.2.3-54-g00ecf