Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-16 | slstatus: set locale | Kurt Van Dijck | |
I want my date & time printed according my locale settings. This commit enables that Signed-off-by: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be> | |||
2017-09-16 | Added CPU iowait to README | Aaron Marcher | |
2017-09-16 | slstatus: add cpu_iowait | Kurt Van Dijck | |
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> | |||
2017-09-14 | Deleted slstatus.png as it is unnecessary | Aaron Marcher | |
2017-09-10 | slstatus load_avg format string | Kamil CholewiĆski | |
2017-08-14 | Added IPv6 address function | Aaron Marcher | |
- Renamed "ip" function to "ipv4" - Added "ipv6" function - Adjusted README and config.def.h accordingly | |||
2017-08-14 | sexy config.def.h table | Aaron Marcher | |
2017-08-14 | Fix a little logic error | Laslo Hunhold | |
2017-08-14 | Add pscanf() | Laslo Hunhold | |
This reduces a lot of equivalent code to one function call. | |||
2017-08-13 | Refactor main() | Laslo Hunhold | |
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. | |||
2017-08-13 | Simplify signal handling a bit | Laslo Hunhold | |
2017-08-13 | Remove unnecessary prototypes | Laslo Hunhold | |
2017-08-13 | Remove unnecessary blank lines after license-notice | Laslo Hunhold | |
2017-08-13 | Fix man page .Os field | Aaron Marcher | |
2017-08-13 | Added Makefile target for distribution tarballs. | Aaron Marcher | |
2017-08-13 | Fixed man page path | Aaron Marcher | |
According to the FHS, /usr/local/share/man is the correct man page path in this projects's case. Set this to default in config.mk. | |||
2017-08-12 | slstatus != dmenu lol | Aaron Marcher | |
2017-08-12 | Removed #define for unknown_str | Aaron Marcher | |
Debugging #define is very difficult. The performance overhead of static const char is negligible. | |||
2017-08-12 | Removed #define for update interval | Aaron Marcher | |
Debugging #define, especially in mathematical constructs is very difficult. The performance overhead of static const int is negligible. | |||
2017-08-12 | Updated LICENSE | Aaron Marcher | |
Extended Ali H. Fardan contribution dates | |||
2017-08-12 | keyboard_indicators: fix segfault when -s is specified | Ali H. Fardan | |
2017-08-11 | Fixed possible NULL-deref and removed unnecessary XOpenDisplay() | Aaron Marcher | |
- Added a check for the return value of XOpenDisplay() in main(). This fixes a possible NULL-deref. - Removed unnsecessary XOpenDisplay and XCloseDisplay from keyboard_indicators(). The ones in main() are sufficent. | |||
2017-08-11 | Add and use LEN() macro | Laslo Hunhold | |
2017-08-11 | Refactor battery_state() | Laslo Hunhold | |
2017-08-10 | Reformatted LICENSE to fit 75 character width | Aaron Marcher | |
2017-08-10 | Print usage() when we are left with arguments | Laslo Hunhold | |
2017-08-10 | Reduce -o | -n to -s | Laslo Hunhold | |
What we really want is to either output to WM_NAME or stdout. If we want just one single line, we do slstatus | head -n 1. | |||
2017-08-10 | Remove d- and v-flags | Laslo Hunhold | |
d-flag: There's no need for that, use the &-operator or fork+exec in a non-shell-context. In the latter case you get the PID for free. v-flag: If you want to find out which version of a package is installed, consult your package manager. That's his job. | |||
2017-08-10 | Convert slstatus.1 to mandoc, simplify it and remove -h | Laslo Hunhold | |
We also change the semantics of -v to only return the version information. There is now no need for usage() to exit with anything other than 1. | |||
2017-08-10 | Refactor build system | Laslo Hunhold | |
2017-08-10 | New README in plain text | Aaron Marcher | |
2017-08-10 | Removed TODO.md | Aaron Marcher | |
2017-08-10 | Removed CONTRIBUTING.md | Aaron Marcher | |
2017-08-10 | Moved contributors to LICENSE | Aaron Marcher | |
2017-08-10 | Copyright sign (C) is not required in LICENSE | Aaron Marcher | |
According to https://opensource.org/licenses/ISC | |||
2017-08-10 | Removed .gitignore from repository | Aaron Marcher | |
A file outside the repository (.git/info/exclude) can replace this and suits better for this usecase. | |||
2017-08-10 | new arg.h version by frign | Aaron Marcher | |
2017-08-06 | add num_files() function for maildirs ;) | aaron marcher | |
2017-06-13 | updated readme | Aaron Marcher | |
2017-06-13 | check for fgets/fscanf return values | Aaron Marcher | |
2017-06-13 | use a static buffer instead of dynamic memory | Aaron Marcher | |
2017-06-12 | remove format characters from stat functions | Aaron Marcher | |
2017-06-12 | add cpu_freq function | Aaron Marcher | |
2017-06-12 | add battery_power function | Aaron Marcher | |
2017-05-11 | added option to output only once and exit afterwards | Aaron Marcher | |
2017-04-20 | enable stack protector and compile to position independent executable | Aaron Marcher | |
2017-04-20 | simplified and improved vol_perc() | Aaron Marcher | |
2017-04-20 | fix overflow in run_command() | Aaron Marcher | |
2017-04-20 | username(): get rid of unneeded uid variable | Aaron Marcher | |
2017-04-20 | Merge pull request #39 from stoeckmann/fgets | Aaron Marcher | |
On success, fgets always terminates the result. |