slstatus/slstatus.h

34 lines
860 B
C
Raw Normal View History

2016-03-16 09:01:07 +01:00
/* See LICENSE file for copyright and license details. */
2016-03-16 08:45:19 +01:00
/* global variables */
static Display *dpy;
/* statusbar configuration type and struct */
typedef char *(*op_fun) (const char *);
struct arg {
op_fun func;
const char *format;
const char *args;
};
/* functions */
void setstatus(const char *);
char *smprintf(const char *, ...);
char *battery_perc(const char *);
char *cpu_perc(const char *);
char *datetime(const char *);
2016-06-10 19:13:13 +02:00
char *disk_free(const char *);
char *disk_perc(const char *);
2016-06-10 19:13:13 +02:00
char *disk_total(const char *);
char *disk_used(const char *);
2016-06-03 13:04:15 +02:00
char *entropy(const char*);
2016-06-10 15:53:07 +02:00
char *hostname(const char *);
2016-06-08 09:42:32 +02:00
char *ip(const char *);
2016-06-10 18:46:47 +02:00
char *ram_free(const char *);
char *ram_perc(const char *);
2016-06-10 18:46:47 +02:00
char *ram_used(const char *);
char *ram_total(const char *);
char *temp(const char *);
char *vol_perc(const char *);
char *wifi_perc(const char *);