summaryrefslogtreecommitdiff
path: root/slstatus.c
Commit message (Collapse)AuthorAgeFilesLines
* add num_files() function for maildirs ;)aaron marcher2017-08-061-0/+25
|
* check for fgets/fscanf return valuesAaron Marcher2017-06-131-35/+75
|
* use a static buffer instead of dynamic memoryAaron Marcher2017-06-131-241/+200
|
* remove format characters from stat functionsAaron Marcher2017-06-121-8/+8
|
* add cpu_freq functionAaron Marcher2017-06-121-0/+18
|
* add battery_power functionAaron Marcher2017-06-121-0/+20
|
* added option to output only once and exit afterwardsAaron Marcher2017-05-111-6/+12
|
* simplified and improved vol_perc()Aaron Marcher2017-04-201-6/+12
|
* fix overflow in run_command()Aaron Marcher2017-04-201-1/+1
|
* username(): get rid of unneeded uid variableAaron Marcher2017-04-201-2/+1
|
* On success, fgets always terminates the result.Tobias Stoeckmann2017-04-041-1/+1
| | | | | | | | If fgets succeeds, then the resulting char array is always terminated by a '\0'. No need to keep extra space, therefore sizeof(buf) is the correct argument. Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
* Fixed out of boundary write on long lines.Tobias Stoeckmann2017-04-021-6/+6
| | | | | | | | | | | The terminating nul character ('\0') could be written outside the boundary of the buffer which is used to read characters. If "sizeof(buffer)" characters are read, the resulting value must not be used as index, because that's an off by one. Read sizeof(buffer)-1 bytes instead. Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
* loading thresholds stateAaron Marcher2017-03-301-0/+2
|
* Fixed XCloseDisplay() which is not reached in keyboard_indicators()Aaron Marcher2017-01-231-2/+1
|
* Added keyboard_indicators (Fixes #31)Aaron Marcher2017-01-161-0/+25
|
* Makefile fix and vol_perc fix for muteAaron Marcher2017-01-091-3/+1
|
* removed ./extern/Aaron Marcher2017-01-071-1/+1
|
* removed strlcat dependency (was used only once)Aaron Marcher2017-01-071-6/+1
|
* got rid of concat.hAaron Marcher2017-01-071-13/+14
|
* happy new year!Aaron Marcher2017-01-071-1/+1
|
* run_command: strlen() will not function if string is not null terminatedAaron Marcher2017-01-071-1/+1
|
* consistent coding style: usage() declaration, eval is a constantAaron Marcher2016-12-301-2/+2
|
* Merge branch 'master' into masterparazyd2016-12-301-123/+137
|\
| * why releases for such a small project? useless and overhead!Aaron Marcher2016-12-291-1/+1
| |
| * #undef strlcpy not needed anymoreAaron Marcher2016-12-291-1/+0
| |
| * Merge branch 'master' into masterAaron Marcher2016-12-291-11/+13
| |\
| | * kernel_release() coding style and position in code fixAaron Marcher2016-12-281-11/+13
| | |
| * | add braces to single statements so drkhsh doesn't be upsetraiz2016-12-291-1/+2
| | |
| * | usage(): return success if -h is called && print more appropriate usage, ↵raiz2016-12-271-6/+8
| | | | | | | | | | | | opts can't be all called at the same time, that's why a separator is required
| * | whhops, my badraiz2016-12-271-1/+1
| | |
| * | wifi_essid: add boundary check && prevent the use of direct string literal ↵raiz2016-12-271-1/+2
| | | | | | | | | | | | as a format string in snprintf()
| * | don't allow the use of perc if uninitializedraiz2016-12-271-4/+4
| | |
| * | remove misleading commentraiz2016-12-271-4/+0
| | |
| * | get rid of set_status() since it's only used onceraiz2016-12-271-10/+3
| | |
| * | allow the use of %* symbols in UNKNOWN_STRraiz2016-12-271-35/+35
| | |
| * | add extra error tests to swap_*() && fix bytes_read bugraiz2016-12-271-39/+38
| | |
| * | swap_*(): add more error testsraiz2016-12-271-3/+16
| | |
| * | fix delay in a cleaner wayraiz2016-12-271-4/+9
| | |
| * | remove newlines from warn() in swap_*(), those functions already print a ↵raiz2016-12-271-4/+4
| | | | | | | | | | | | newline after printing string stderr
| * | inititalize run_command()'s buf to UNKNOWN_STR by defaultraiz2016-12-271-1/+1
| | |
| * | remove newline character from run_command() output accuratelyraiz2016-12-271-1/+5
| | |
| * | strtok() has no effect on buf && fgets() should have the full buffer lengthraiz2016-12-271-2/+1
| | |
| * | whhopsraiz2016-12-181-1/+0
| | |
| * | remove unused strlcpy() and reduce the size of output bufferraiz2016-12-181-2/+3
| |/
* | add vol_perc notes, add braces to singleline statementsparazyd2016-12-301-4/+8
| |
* | refactor vol_perc to not depend on alsa librariesparazyd2016-12-281-30/+15
|/
* Add "uname -r" functionalityMike Coddington2016-11-161-0/+12
|
* swap: Print UNKNOWN_STR if no swap is allocatedJody Leonard2016-10-151-7/+22
|
* Add functions for measuring swapJody Leonard2016-10-151-0/+128
|
* vol_perc: Return "mute" when mixer is mutedJody Leonard2016-10-131-1/+5
| | | | This feature was originally removed as part of 52d19f9.