env/spoon/config.h-Linux

12 lines
531 B
Plaintext
Raw Normal View History

2019-09-11 04:11:40 +02:00
/* delay between each update in seconds */
int delay = 1;
struct ent ents[] = {
/* reorder/remove these as you see fit */
/*{ .fmt = "%s | ", .read = mpdread, .arg = &(struct mpdarg){ .host = NULL, .port = 0 } },*/
{ .fmt = "%%{r}i7 %s'C | ", .read = tempread, .arg = "/sys/class/hwmon/hwmon0/temp1_input" },
{ .fmt = "%s | ", .read = netspeedread, .arg = "enp11s0" },
{ .fmt = "V%s%% | ", .read = mixread, .arg = NULL },
{ .fmt = "%s", .read = dateread, .arg = &(struct datearg){ .fmt = "%a %d %b %T", .tz = "UTC" } },
};