Formatting commit :(
I know formatting commits suck... And I try to avoid them. But this commit was absolutely necessary... The coding style in this program was not ok and not the same over the whole program. The commit is hard to read, but this is what I changed: - Tabs for indentation instead of spaces - Same style over the whole program (suckless style)
This commit is contained in:

committed by
Aaron Marcher (drkhsh)

parent
ec35376127
commit
ad8ab20c63
26
config.def.h
26
config.def.h
@ -1,12 +1,12 @@
|
||||
/* See LICENSE file for copyright and license details. */
|
||||
|
||||
/* alsa sound */
|
||||
static const char channel[] = "Master";
|
||||
static const char channel[] = "Master";
|
||||
|
||||
/* battery */
|
||||
static const char batterypath[] = "/sys/class/power_supply/";
|
||||
static const char batterynow[] = "energy_now";
|
||||
static const char batteryfull[] = "energy_full_design";
|
||||
static const char batterypath[] = "/sys/class/power_supply/";
|
||||
static const char batterynow[] = "energy_now";
|
||||
static const char batteryfull[] = "energy_full_design";
|
||||
|
||||
/* bar update interval in seconds (smallest value = 1) */
|
||||
static unsigned int update_interval = 1;
|
||||
@ -35,13 +35,13 @@ static unsigned int update_interval = 1;
|
||||
- wifi_perc (wifi signal in percent) [argument: wifi card interface name]
|
||||
- wifi_essid (wifi essid) [argument: wifi card interface name] */
|
||||
static const struct arg args[] = {
|
||||
/* function format argument */
|
||||
{ wifi_perc, "wifi %4s | ", "wlp3s0" },
|
||||
{ battery_perc, "bat %4s | ", "BAT0" },
|
||||
{ cpu_perc, "cpu %4s ", NULL },
|
||||
{ temp, "%3s | ", "/sys/devices/platform/coretemp.0/hwmon/hwmon2/temp1_input" },
|
||||
{ ram_perc, "ram %3s | ", NULL },
|
||||
{ vol_perc, "vol %4s | ", "default" },
|
||||
{ disk_perc, "ssd %3s | ", "/" },
|
||||
{ datetime, "%s", "%y-%m-%d %H:%M:%S" },
|
||||
/* function format argument */
|
||||
{ wifi_perc, "wifi %4s | ", "wlp3s0" },
|
||||
{ battery_perc, "bat %4s | ", "BAT0" },
|
||||
{ cpu_perc, "cpu %4s ", NULL },
|
||||
{ temp, "%3s | ", "/sys/devices/platform/coretemp.0/hwmon/hwmon2/temp1_input" },
|
||||
{ ram_perc, "ram %3s | ", NULL },
|
||||
{ vol_perc, "vol %4s | ", "default" },
|
||||
{ disk_perc, "ssd %3s | ", "/" },
|
||||
{ datetime, "%s", "%y-%m-%d %H:%M:%S" },
|
||||
};
|
||||
|
Reference in New Issue
Block a user