A better version of dwmblock (i think)...
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
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 $@