My slstatus configuration
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

25 wiersze
593 B

  1. /* See LICENSE file for copyright and license details. */
  2. /* global variables */
  3. static Display *dpy;
  4. /* statusbar configuration type and struct */
  5. typedef char *(*op_fun) (const char *);
  6. struct arg {
  7. op_fun func;
  8. const char *format;
  9. const char *args;
  10. };
  11. /* functions */
  12. void setstatus(const char *);
  13. char *smprintf(const char *, ...);
  14. char *battery_perc(const char *);
  15. char *cpu_perc(const char *);
  16. char *datetime(const char *);
  17. char *disk_perc(const char *);
  18. char *ram_perc(const char *);
  19. char *temp(const char *);
  20. char *vol_perc(const char *);
  21. char *wifi_perc(const char *);