11
[-] Kaasblokje@feddit.nl 1 points 1 year ago* (last edited 1 year ago)

entr to run arbitrary commands when files change. For example, I use it in makefiles like this (see the watch target):

TARGET=report.pdf
SOURCE=report.md

$(TARGET): $(SOURCE)
	pandoc --citeproc -o $(TARGET) $(SOURCE)

watch:
	echo $(SOURCE) | entr make $(TARGET)

clean:
	rm -f $(TARGET)

.PHONY: clean watch
[-] Kaasblokje@feddit.nl 2 points 1 year ago* (last edited 1 year ago)

I like Joplin for notes, but it might not be exactly what you are looking for. I would not describe it as minimalistic.

Kaasblokje

joined 1 year ago