You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
621 B
25 lines
621 B
/* See LICENSE file for copyright and license details. */
|
|
|
|
/* 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 *);
|
|
char *disk_perc(const char *);
|
|
char *entropy(const char*);
|
|
char *ram_perc(const char *);
|
|
char *temp(const char *);
|
|
char *vol_perc(const char *);
|
|
char *wifi_perc(const char *);
|
|
|