Kaasblokje@feddit.nl to Technology@beehaw.orgEnglish · 1 year agoAMD CPU Use Among Linux Gamers Approaching 70% Marketshareplus-squarewww.phoronix.comexternal-linkmessage-square10fedilinkarrow-up111arrow-down10
arrow-up111arrow-down1external-linkAMD CPU Use Among Linux Gamers Approaching 70% Marketshareplus-squarewww.phoronix.comKaasblokje@feddit.nl to Technology@beehaw.orgEnglish · 1 year agomessage-square10fedilink
minus-squareKaasblokje@feddit.nltoFree and Open Source Software@beehaw.org•What are some tiny, lightweight apps for Linux that are really neat?linkfedilinkEnglisharrow-up1·edit-21 year agoentr 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 linkfedilink
minus-squareKaasblokje@feddit.nltoFree and Open Source Software@beehaw.org•Simple alternatives to Adler Noteslinkfedilinkarrow-up2·edit-21 year agoI like Joplin for notes, but it might not be exactly what you are looking for. I would not describe it as minimalistic. linkfedilink
entr
to run arbitrary commands when files change. For example, I use it in makefiles like this (see thewatch
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