summaryrefslogtreecommitdiff
path: root/components
Commit message (Collapse)AuthorAgeFilesLines
* Remove fmt from load_avgs for consistencyAaron Marcher2018-05-211-2/+2
| | | | | In a later commit something like that will be enabled for every component
* battery_remaining: check for division by zeroAaron Marcher2018-05-211-0/+4
|
* battery_remaining: Change float to doubleAaron Marcher2018-05-211-3/+3
|
* battery: Minor coding style fixesAaron Marcher2018-05-211-10/+15
| | | | | | - Line length - Spacing and indentation - No explicit checks for NULL
* Increase readability for load_uvmexp returnAaron Marcher2018-05-211-1/+5
|
* Remove units from numbersAaron Marcher2018-05-219-41/+39
| | | | | | | | | | This is a first step to decouple formatting from information because of two reasons: 1. The components should only gather and return the values by design 2. Fine grained user control should be a focus Scaling will be implemented in a different way in a later commit.
* swap_perc: check for division by zero on obsd tooAaron Marcher2018-05-211-0/+4
|
* swap_perc: check for division by zeroAaron Marcher2018-05-201-0/+4
|
* Support energy_now/power_now in battery_remainingDavid Demelier2018-05-201-14/+27
| | | | | | | | On some laptops (mostly thinkpads), the remaining time may be expressed in µWh using energy_now and power_now files rather than µAh for charge_now and current_now. Add pick function to conditionally select appropriate one.
* ip: fixed memory leakTobias Tschinkowitz2018-05-201-0/+1
| | | | free the interface list before returning from the function
* Check return value of pclose()Laslo Hunhold2018-05-201-1/+4
|
* Refactor ram.cAaron Marcher2018-05-201-24/+37
|
* Make temp more readable on LinuxAaron Marcher2018-05-201-2/+5
|
* Refactor entropy.cLaslo Hunhold2018-05-201-3/+6
|
* Remove initialization to 0 for static varsAaron Marcher2018-05-201-4/+4
|
* Remove unnecessary "valid" variable in cpu_percAaron Marcher2018-05-201-6/+2
|
* Add unit to temperatureAaron Marcher2018-05-201-2/+2
|
* Implement scaling for cpu_freqAaron Marcher2018-05-191-5/+13
|
* Implement fmt_human_2() and fmt_human_10()Laslo Hunhold2018-05-194-23/+35
| | | | | | | | | These functions take the raw number and a unit and automatically print it out "scaled down" to a proper SI-prefix, for powers of 2 and 10 respectively. Apply them to the 2-power cases and keep the 10-power for a later commit.
* Add the percent sign to *_perc functionsAaron Marcher2018-05-197-12/+12
| | | | Units should be added to the corresponding numbers
* Increase precision in netspeeds.cLaslo Hunhold2018-05-191-8/+8
| | | | | | | | | First dividing by interval before multiplying with 1000 decreases the precision by +-(interval - 1) * 1000, as interval arithmetic always applies the Gauß-function to the result. This is not necessary and simply reordering the operations mitigates this.
* Implement esnprintf() and make formatted calls more efficientLaslo Hunhold2018-05-193-18/+49
| | | | | | | Within the components, snprintf() was unchecked and had inefficient calls in some places. We implement esnprintf() that does all the dirty laundry for us and use it exclusively now.
* Simplify ipv* functionsAaron Marcher2018-05-191-33/+12
|
* Use `int` for flagsAaron Marcher2018-05-191-2/+2
|
* Revert aac29e2 as it is nonsenseAaron Marcher2018-05-191-8/+14
|
* Set {r,t}xbytes 0 before incrementing them on OBSDAaron Marcher2018-05-191-2/+6
|
* Missing assignment for last commitAaron Marcher2018-05-191-0/+2
|
* Unify and simplify netspeed logic and typesAaron Marcher2018-05-191-30/+24
|
* netspeeds: added error condition for openbsdTobias Tschinkowitz2018-05-191-2/+12
| | | | | | implemented additional error condition for openbsd netstat in case the interface could not be found in the interface list or if_data is not readable.
* uptime: Format function is staticAaron Marcher2018-05-191-1/+1
|
* battery: Move out struct as common codeAaron Marcher2018-05-191-14/+8
|
* implemented openbsd netspeed functionsTobias Tschinkowitz2018-05-191-1/+59
| | | | | | implemented the netspeed functionality for openbsd. furthermore the static keyword was removed of the interval variable in config.def.h for usage as extern variable.
* Add network speed functionsAaron Marcher2018-05-191-0/+53
|
* Implement fmt_scaled for ram_* functionsAaron Marcher2018-05-181-14/+6
|
* Fix ram_free for LinuxAaron Marcher2018-05-181-1/+5
|
* Implement fmt_scaled for swap_* functionsAaron Marcher2018-05-181-6/+6
|
* Implement fmt_scaled for disk_* functionsAaron Marcher2018-05-181-7/+3
|
* Use %d instead of accidentally %iAaron Marcher2018-05-182-4/+4
|
* Port battery_remaining to LinuxAaron Marcher2018-05-181-3/+31
| | | | Additionally unify the format of battery_state and uptime
* Fix memory leakAaron Marcher2018-05-181-1/+1
|
* battery: fixed remaining time on connected ACTobias Tschinkowitz2018-05-181-2/+6
| | | | | | when an AC is connected apm_info shows a non-valid value for remaining minutes. it was decided that in that case the function should return an empty string.
* Fix indentationAaron Marcher2018-05-181-1/+1
| | | | Tabs for indentation, spaces for alignment
* Add battery_remaining function on OpenBSDTobias Tschinkowitz2018-05-181-25/+45
| | | | | | | Implementation of a battery_remaining function which returns the remaining battery time in HH:MM format. Linux function still needs implementation. Move common code to load_apm_power_info
* Add warn() and die()Laslo Hunhold2018-05-1817-51/+40
| | | | | | | | | | | Given slstatus is a tool that runs in the background, most likely run from .xinitrc, it's important to prepend the name of the tool to error messages so it becomes clear where the error is coming from. To make this much more consistent, this commit adds warn() and die() utility functions consistent with other suckless projects and adapts all calls to fprintf(stderr, *) to the warn() and die() functions, greatly increasing the readability of the code.
* Remove UNUSED macroAaron Marcher2018-05-172-9/+3
| | | | Use variables named unused instead which is simpler
* Mark unused parameters, fix compiler warningsAaron Marcher2018-05-172-2/+8
|
* wifi: Fix order and add missing headerAaron Marcher2018-05-171-1/+2
| | | | | <sys/select.h> is needed before <net80211/ieee80211_ioctl.h> on OpenBSD to define NBBY and shut up compiler warnings.
* wifi: Change memmove to memcpy on OpenBSDAaron Marcher2018-05-171-1/+1
|
* Unify type of in for loopsAaron Marcher2018-05-171-1/+2
|
* wifi_essid: Fix coding styleAaron Marcher2018-05-171-2/+2
| | | | Only initialize variables at the beginning of a block