2016-03-04 18:07:42 +01:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
2017-08-13 23:21:23 +02:00
|
|
|
/* interval between updates (in ms) */
|
2018-05-19 01:29:20 +02:00
|
|
|
const unsigned int interval = 1000;
|
2016-03-04 18:07:42 +01:00
|
|
|
|
2016-08-18 13:03:42 +02:00
|
|
|
/* text to show if no value can be retrieved */
|
2017-08-12 13:27:30 +02:00
|
|
|
static const char unknown_str[] = "n/a";
|
2017-06-13 00:06:04 +02:00
|
|
|
|
|
|
|
/* maximum output string length */
|
|
|
|
#define MAXLEN 2048
|
2016-08-18 13:03:42 +02:00
|
|
|
|
2017-08-14 14:04:21 +02:00
|
|
|
/*
|
2018-05-02 12:30:16 +02:00
|
|
|
* function description argument (example)
|
2017-08-14 14:04:21 +02:00
|
|
|
*
|
2018-05-22 09:23:29 +02:00
|
|
|
* backlight_perc backlight percentage device name
|
|
|
|
* (intel_backlight)
|
2018-05-02 12:30:16 +02:00
|
|
|
* battery_perc battery percentage battery name (BAT0)
|
2018-05-17 17:24:47 +02:00
|
|
|
* NULL on OpenBSD
|
2018-05-02 12:30:16 +02:00
|
|
|
* battery_state battery charging state battery name (BAT0)
|
2018-05-17 17:24:47 +02:00
|
|
|
* NULL on OpenBSD
|
2018-05-18 15:32:15 +02:00
|
|
|
* battery_remaining battery remaining HH:MM battery name (BAT0)
|
|
|
|
* NULL on OpenBSD
|
2017-08-14 14:04:21 +02:00
|
|
|
* cpu_perc cpu usage in percent NULL
|
|
|
|
* cpu_freq cpu frequency in MHz NULL
|
2018-05-02 12:30:16 +02:00
|
|
|
* datetime date and time format string (%F %T)
|
|
|
|
* disk_free free disk space in GB mountpoint path (/)
|
|
|
|
* disk_perc disk usage in percent mountpoint path (/)
|
|
|
|
* disk_total total disk space in GB mountpoint path (/")
|
|
|
|
* disk_used used disk space in GB mountpoint path (/)
|
2017-08-14 14:04:21 +02:00
|
|
|
* entropy available entropy NULL
|
|
|
|
* gid GID of current user NULL
|
|
|
|
* hostname hostname NULL
|
2018-05-02 12:30:16 +02:00
|
|
|
* ipv4 IPv4 address interface name (eth0)
|
|
|
|
* ipv6 IPv6 address interface name (eth0)
|
2017-08-14 14:04:21 +02:00
|
|
|
* kernel_release `uname -r` NULL
|
|
|
|
* keyboard_indicators caps/num lock indicators NULL
|
2018-05-21 14:14:45 +02:00
|
|
|
* load_avg load average NULL
|
2018-05-19 00:40:59 +02:00
|
|
|
* netspeed_rx receive network speed interface name (wlan0)
|
|
|
|
* netspeed_tx transfer network speed interface name (wlan0)
|
2017-08-14 14:04:21 +02:00
|
|
|
* num_files number of files in a directory path
|
2018-05-02 12:30:16 +02:00
|
|
|
* (/home/foo/Inbox/cur)
|
2017-08-14 14:04:21 +02:00
|
|
|
* ram_free free memory in GB NULL
|
|
|
|
* ram_perc memory usage in percent NULL
|
|
|
|
* ram_total total memory size in GB NULL
|
|
|
|
* ram_used used memory in GB NULL
|
2018-05-02 12:30:16 +02:00
|
|
|
* run_command custom shell command command (echo foo)
|
2017-08-14 14:04:21 +02:00
|
|
|
* swap_free free swap in GB NULL
|
|
|
|
* swap_perc swap usage in percent NULL
|
|
|
|
* swap_total total swap size in GB NULL
|
|
|
|
* swap_used used swap in GB NULL
|
|
|
|
* temp temperature in degree celsius sensor file
|
2018-05-02 12:30:16 +02:00
|
|
|
* (/sys/class/thermal/...)
|
2018-05-17 13:19:29 +02:00
|
|
|
* NULL on OpenBSD
|
2017-08-14 14:04:21 +02:00
|
|
|
* uid UID of current user NULL
|
|
|
|
* uptime system uptime NULL
|
|
|
|
* username username of current user NULL
|
2018-05-02 12:30:16 +02:00
|
|
|
* vol_perc OSS/ALSA volume in percent mixer file (/dev/mixer)
|
|
|
|
* wifi_perc WiFi signal in percent interface name (wlan0)
|
|
|
|
* wifi_essid WiFi ESSID interface name (wlan0)
|
2017-08-14 14:04:21 +02:00
|
|
|
*/
|
2016-03-14 20:17:14 +01:00
|
|
|
static const struct arg args[] = {
|
2017-06-12 23:59:21 +02:00
|
|
|
/* function format argument */
|
2018-04-16 19:09:07 +02:00
|
|
|
{ datetime, "%s", "%F %T" },
|
2016-03-14 20:17:14 +01:00
|
|
|
};
|