A better version of dwmblock (i think)...
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

17 lines
282B

  1. PREFIX=/usr/local
  2. all: dwmstatus dwmstatus-pulse
  3. clean:
  4. rm -f dwmstatus dwmstatus-pulse
  5. install:
  6. cp dwmstatus $(PREFIX)/bin
  7. cp dwmstatus-pulse $(PREFIX)/bin
  8. dwmstatus-pulse: dwmstatus-pulse.c
  9. $(CC) $< `pkg-config --libs libpulse-mainloop-glib` -o $@
  10. %: %.c
  11. $(CC) $< -o $@