personal/dotfiles

configs/slstatus.h in master
Repositories | Summary | Log | Files | README.md | LICENSE

slstatus.h (4478B) download


 1/* See LICENSE file for copyright and license details. */
 2
 3/* interval between updates (in ms) */
 4const unsigned int interval = 1000;
 5
 6/* if message is displayed, last max cycles */
 7const static int maxmsgcycle = 5;
 8
 9/* text to show if no value can be retrieved */
10static const char unknown_str[] = "n/a";
11
12/* maximum output string length */
13#define MAXLEN 2048
14
15/*
16 * function            description                     argument (example)
17 *
18 * battery_perc        battery percentage              battery name (BAT0)
19 *                                                     NULL on OpenBSD/FreeBSD
20 * battery_remaining   battery remaining HH:MM         battery name (BAT0)
21 *                                                     NULL on OpenBSD/FreeBSD
22 * battery_state       battery charging state          battery name (BAT0)
23 *                                                     NULL on OpenBSD/FreeBSD
24 * cat                 read arbitrary file             path
25 * cpu_freq            cpu frequency in MHz            NULL
26 * cpu_perc            cpu usage in percent            NULL
27 * datetime            date and time                   format string (%F %T)
28 * disk_free           free disk space in GB           mountpoint path (/)
29 * disk_perc           disk usage in percent           mountpoint path (/)
30 * disk_total          total disk space in GB          mountpoint path (/)
31 * disk_used           used disk space in GB           mountpoint path (/)
32 * entropy             available entropy               NULL
33 * gid                 GID of current user             NULL
34 * hostname            hostname                        NULL
35 * ipv4                IPv4 address                    interface name (eth0)
36 * ipv6                IPv6 address                    interface name (eth0)
37 * kernel_release      `uname -r`                      NULL
38 * keyboard_indicators caps/num lock indicators        format string (c?n?)
39 *                                                     see keyboard_indicators.c
40 * keymap              layout (variant) of current     NULL
41 *                     keymap
42 * load_avg            load average                    NULL
43 * netspeed_rx         receive network speed           interface name (wlan0)
44 * netspeed_tx         transfer network speed          interface name (wlan0)
45 * num_files           number of files in a directory  path
46 *                                                     (/home/foo/Inbox/cur)
47 * ram_free            free memory in GB               NULL
48 * ram_perc            memory usage in percent         NULL
49 * ram_total           total memory size in GB         NULL
50 * ram_used            used memory in GB               NULL
51 * run_command         custom shell command            command (echo foo)
52 * swap_free           free swap in GB                 NULL
53 * swap_perc           swap usage in percent           NULL
54 * swap_total          total swap size in GB           NULL
55 * swap_used           used swap in GB                 NULL
56 * temp                temperature in degree celsius   sensor file
57 *                                                     (/sys/class/thermal/...)
58 *                                                     NULL on OpenBSD
59 *                                                     thermal zone on FreeBSD
60 *                                                     (tz0, tz1, etc.)
61 * uid                 UID of current user             NULL
62 * uptime              system uptime                   NULL
63 * username            username of current user        NULL
64 * vol_perc            OSS/ALSA volume in percent      mixer file (/dev/mixer)
65 *                                                     NULL on OpenBSD/FreeBSD
66 * wifi_essid          WiFi ESSID                      interface name (wlan0)
67 * wifi_perc           WiFi signal in percent          interface name (wlan0)
68 */
69
70//│ 
71static const struct arg args[] = {
72	/* function format             argument */
73	{ netspeed_rx, always,    "󰛀 %8sB/s", "wlp2s0" },
74	{ netspeed_tx, always, " | 󰛃 %8sB/s", "wlp2s0" },
75	{ cat,         always, " | 󰏗 %s",     "/tmp/xbps-updates.txt" },
76	// { ram_perc,    always, " | 󰍛 %3s%%",  NULL },
77	{ cpu_perc,    always, " |  %3s%%",  NULL },
78	// { battery_state,always," | %s ",     "BAT0" },
79	// { battery_perc,always,    "%s%%",      "BAT0" },
80	// { battery_remaining, battery_discharge, " (%s)", "BAT0" },
81	{ datetime,    always, " | 󱑂 %s", 	   "%d-%m-%y %H:%M:%S" },
82};