Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add separator module | Ryan Kes | 2020-11-30 | 1 | -0/+1 |
| | |||||
* | Add FreeBSD support for temperature and battery components | Michael Buch | 2019-02-05 | 1 | -3/+5 |
| | |||||
* | Consistency with 80 char limit and breaks | Aaron Marcher | 2018-07-08 | 1 | -47/+47 |
| | |||||
* | Add flexible formatting to keyboard_indicators. | Ian Remmler | 2018-06-04 | 1 | -1/+2 |
| | | | | Updated for style. | ||||
* | Revert "Add basic backlight percentage support" | Aaron Marcher | 2018-05-27 | 1 | -2/+0 |
| | | | | | | | | | | | | On OpenBSD the backlight percentage cannot be retrieved in a simple way. The only two solutions we are aware of for now are: - reading from /dev/ttyC0: which isn't possible without changing permissions or running slstatus as root - linking against xcb-xrandr: which is bloat and does not work in every case appearently This reverts commit 37724ac2c3f496f4736223d0d8e5d8fecb933590 for now. | ||||
* | Add keymap component | Michael Buch | 2018-05-23 | 1 | -0/+2 |
| | | | | | | | | Adding a new keymap component that will indicate the current keyboard layout (language) and variant if any was set. I use the standard X11 XKB APIs to retrieve and parse the xkb_symbols set with setxkbmap. | ||||
* | Add basic backlight percentage support | David Demelier | 2018-05-22 | 1 | -0/+2 |
| | | | | At the moment linux only, but will add support for OpenBSD as well. | ||||
* | Remove fmt from load_avgs for consistency | Aaron Marcher | 2018-05-21 | 1 | -2/+1 |
| | | | | | In a later commit something like that will be enabled for every component | ||||
* | implemented openbsd netspeed functions | Tobias Tschinkowitz | 2018-05-19 | 1 | -1/+1 |
| | | | | | | 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 netspeeds to config.def.h | Aaron Marcher | 2018-05-19 | 1 | -0/+2 |
| | |||||
* | Fix indentation | Aaron Marcher | 2018-05-18 | 1 | -2/+2 |
| | | | | Tabs for indentation, spaces for alignment | ||||
* | Add battery_remaining function on OpenBSD | Tobias Tschinkowitz | 2018-05-18 | 1 | -0/+2 |
| | | | | | | | 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 | ||||
* | Change interval to unsigned int | Aaron Marcher | 2018-05-17 | 1 | -1/+1 |
| | |||||
* | Add comments for battery_* functions on OpenBSD | Aaron Marcher | 2018-05-17 | 1 | -0/+2 |
| | |||||
* | added comment for temp function (openbsd) | Tobias Tschinkowitz | 2018-05-17 | 1 | -0/+1 |
| | |||||
* | Remove cpu_iowait | Aaron Marcher | 2018-05-06 | 1 | -1/+0 |
| | | | | | | The third value from load_avg (idle) gives us almost the same information as cpu_iowait. Plus OpenBSD does not offer an iowait value as Linux and thus the corresponding function would not be portable. | ||||
* | Add examples to config.def.h | Aaron Marcher | 2018-05-02 | 1 | -14/+17 |
| | |||||
* | Remove battery_power for various reasons | Aaron Marcher | 2018-05-01 | 1 | -1/+0 |
| | | | | | - Battery power cannot be easily gatherable via apm(4) - IMHO it does not represent essential information | ||||
* | Remove non-portable functions from config.def.h | Aaron Marcher | 2018-04-16 | 1 | -3/+1 |
| | |||||
* | slstatus: add cpu_iowait | Kurt Van Dijck | 2017-09-16 | 1 | -0/+1 |
| | | | | | | | | | | This commit introduces the cpu_iowait item, this is the percentage of cpu time spent waiting on disks. High numbers typically indicate that your system is not responsive due to disk IO. This commit also avoid sleeping inside the cpu_perc and cpu_iowait functions: waiting in either one implies lost info for the other. Signed-off-by: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be> | ||||
* | slstatus load_avg format string | Kamil Cholewiński | 2017-09-10 | 1 | -1/+1 |
| | |||||
* | Added IPv6 address function | Aaron Marcher | 2017-08-14 | 1 | -1/+2 |
| | | | | | | - Renamed "ip" function to "ipv4" - Added "ipv6" function - Adjusted README and config.def.h accordingly | ||||
* | sexy config.def.h table | Aaron Marcher | 2017-08-14 | 1 | -35/+38 |
| | |||||
* | Refactor main() | Laslo Hunhold | 2017-08-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | We remove the hack with the sleep and global "delay"-variable and use a monotonic clock to derive the desired monotonic properties of the tool. Inside each function that demands a personal delay we can then just do a nanosleep() and be done with it. It's a shame that timespec is so ugly to work with, but there's really no way to make it more beautiful. However, at this cost though we finally can set the interval times in milliseconds and not only just seconds. We remove setlocale(), because nothing good ever came out of this function. Besides that we have some more code refactoring, especially in the argument loop which saves us a bit of complexity. | ||||
* | Removed #define for unknown_str | Aaron Marcher | 2017-08-12 | 1 | -1/+1 |
| | | | | | Debugging #define is very difficult. The performance overhead of static const char is negligible. | ||||
* | Removed #define for update interval | Aaron Marcher | 2017-08-12 | 1 | -1/+1 |
| | | | | | Debugging #define, especially in mathematical constructs is very difficult. The performance overhead of static const int is negligible. | ||||
* | add num_files() function for maildirs ;) | aaron marcher | 2017-08-06 | 1 | -0/+1 |
| | |||||
* | use a static buffer instead of dynamic memory | Aaron Marcher | 2017-06-13 | 1 | -1/+4 |
| | |||||
* | remove format characters from stat functions | Aaron Marcher | 2017-06-12 | 1 | -4/+4 |
| | |||||
* | add cpu_freq function | Aaron Marcher | 2017-06-12 | 1 | -0/+1 |
| | |||||
* | add battery_power function | Aaron Marcher | 2017-06-12 | 1 | -0/+1 |
| | |||||
* | Added keyboard_indicators (Fixes #31) | Aaron Marcher | 2017-01-16 | 1 | -0/+1 |
| | |||||
* | add vol_perc notes, add braces to singleline statements | parazyd | 2016-12-30 | 1 | -1/+1 |
| | |||||
* | refactor vol_perc to not depend on alsa libraries | parazyd | 2016-12-28 | 1 | -1/+1 |
| | |||||
* | Add "uname -r" functionality | Mike Coddington | 2016-11-16 | 1 | -0/+1 |
| | |||||
* | Edit config.def.h function descriptions | Jody Leonard | 2016-10-15 | 1 | -7/+11 |
| | |||||
* | better default config.h | Aaron Marcher | 2016-10-05 | 1 | -4/+4 |
| | |||||
* | battery_state() function added | Aaron Marcher | 2016-09-13 | 1 | -0/+1 |
| | |||||
* | simplified vol_perc() (and with that config.def.h is super clean) | Aaron Marcher | 2016-09-13 | 1 | -3/+0 |
| | |||||
* | simplified battery_perc() a lot and removed useless options from config.def.h | Aaron Marcher | 2016-09-13 | 1 | -5/+0 |
| | |||||
* | brought back update interval | Aaron Marcher | 2016-09-09 | 1 | -5/+8 |
| | |||||
* | coding style fixes | Aaron Marcher | 2016-09-09 | 1 | -9/+8 |
| | |||||
* | removed UPDATE_INTERVAL, it is neat to have it but removing it is a tradeoff ↵ | Ali H. Fardan | 2016-09-03 | 1 | -3/+0 |
| | | | | worth making, because the clock would act weird if this used to work with cpu_perc(). | ||||
* | removed vol function from the default config file | Ali H. Fardan | 2016-08-31 | 1 | -1/+0 |
| | |||||
* | removed a misplaced ';' | Ali H. Fardan | 2016-08-28 | 1 | -1/+1 |
| | |||||
* | used constant string literals && remote initialization to in battery_perc() ↵ | Ali H. Fardan | 2016-08-28 | 1 | -15/+12 |
| | | | | && trying to fix possible buffer overflow | ||||
* | corrected the time format | Ali H. Fardan | 2016-08-21 | 1 | -1/+1 |
| | |||||
* | added uptime function | Aaron Marcher | 2016-08-18 | 1 | -0/+1 |
| | |||||
* | load avg | Aaron Marcher | 2016-08-18 | 1 | -0/+1 |
| | |||||
* | added configuration option for n/a text | Aaron Marcher | 2016-08-18 | 1 | -0/+3 |
| |