diff options
| author | 2026-07-07 21:19:59 -0700 | |
|---|---|---|
| committer | 2026-08-26 23:04:25 -0700 | |
| commit | 627e617b1ba793fc8a9d316e7bcafe07631b7676 (patch) | |
| tree | b262603234ace7b81bab651f45e48ba4ccc24d44 | |
| parent | 306f350637fc7f41473271d57abbb9a71ff4ed71 (diff) | |
| download | new-dotfiles-627e617b1ba793fc8a9d316e7bcafe07631b7676.tar.gz new-dotfiles-627e617b1ba793fc8a9d316e7bcafe07631b7676.zip | |
GNUmakefile: Update transformation colors
Use backkgrounds instead of foregrounds, add some spacing around them. Trying
out something new.
| -rw-r--r-- | GNUmakefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 7389aac..da5f8a7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -8,7 +8,7 @@ SCHEME_IMPLEMENTATION = guile .PRECIOUS: %.el define tangle = - @printf "\e[35mOBT\e[0m %s\n" $< + @printf "\e[30;41m OBT \e[0m %s\n" $< @$(EMACS) -quick -batch \ -eval "(package-initialize)" \ -load ob-tangle \ @@ -28,7 +28,8 @@ before-%-install: # Dummy recipe @true %-stow: % before-%-install - $(STOW) $< + @printf "\e[30;44m LNK \e[0m %s\n" $< + @$(STOW) $< %-install: %-stow # Dummy recipe @true @@ -131,14 +132,14 @@ nyxt: nyxt/.config/nyxt/init.lisp $(call tangle,emacs-lisp) %.elc: %.el - @printf "\e[36mELC\e[0m %s\n" $< + @printf "\e[30;42m ELC \e[0m %s\n" $< @$(EMACS) -q -batch -f package-initialize -f batch-byte-compile $< %.fnl: %.org $(call tangle,fennel) %.lua: %.fnl - @printf "\e[32mFNL\e[0m %s\n" $< + @printf "\e[30;43m FNL \e[0m %s\n" $< @fennel --compile $^ > $@ %: %.org |
