summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2020-06-15Use the PulseAudio port name rather than the sink name (#419)Mikel Ward
This generates much friendlier names on all my systems, e.g. "HDMI / DisplayPort 5" rather than "Ellesmere HDMI Audio [Radeon RX 470/480 / 570/580/590] Digital Stereo (HDMI 5)"
2020-05-01Fix fall-through warningsOrestis Floros
2020-05-01Fix various memory leaksOrestis Floros
Fixes #362
2020-05-01Merge pull request #415 from orestisfl/resolve-tildeIngo Bürk
Resolve tilde
2020-05-01print_file_contents: Resolve tildeOrestis Floros
Fixes #350
2020-05-01Move general functions scalloc, sstrdup out of i3status.cOrestis Floros
2020-05-01travis: update dist, add custom matrixOrestis Floros
New matrix for 5 jobs in total. Updates our checks to bionic & xenial. Trusty could also be included but it is a bit outdated at this point. I use bionic to pull a more recent clang-format and use a dedicated job just to check formatting. An alternative would be to conditionally run the formatting script only on bionic. I don't think that there is a better way to expand a `dist` x `compiler` matrix (except using docker).
2020-05-01Merge pull request #409 from Stunkymonkey/format_placeholder-volumeIngo Bürk
Format placeholder volume
2020-05-01Fix various warningsOrestis Floros
- unused variable ‘walk’ [-Wunused-variable] - implicit declaration of built-in function ‘free’ [-Wimplicit-function-declaration] - initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - variable 'ram_used' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]. This is actually easily reproducible by specifying `memory_used_method = "XXX"`. - comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare] (for `exponent`)
2020-04-26[volume] fix memory leakFelix Buehler
mend
2020-04-11wireless: Fix rendering bitrateAleksandr Matveev
2020-04-11wireless: support connection bitrate on FreeBSDAleksandr Matveev
2020-04-08use statvfs f_frsize for file system block size (#405)tripledonkey
* use statvfs f_frsize for file system block size
2020-04-08Merge pull request #402 from Stunkymonkey/format_placeholder-wireless_infoIngo Bürk
use format_placeholder for wireless_info
2020-04-07use format_placeholder for volumeFelix Buehler
2020-04-07Merge pull request #404 from Stunkymonkey/format_placeholder-file_contentIngo Bürk
use format_placeholder for file_content
2020-04-03use format_placeholder for file_contentFelix Buehler
2020-04-03remove goto-labels from wireless_infoFelix Buehler
2020-04-03Merge pull request #401 from Stunkymonkey/format_placeholder-timeIngo Bürk
use format_placeholder for time
2020-04-03Merge pull request #400 from Stunkymonkey/format_placeholder-run_watchIngo Bürk
use format_placeholder for run_watch
2020-04-03Merge pull request #399 from Stunkymonkey/format_placeholder-path_existsIngo Bürk
use format_placeholder for path_exists
2020-03-31use format_placeholder for wireless_infoFelix Buehler
2020-03-31use format_placeholder for timeFelix Buehler
2020-03-31use format_placeholder for run_watchFelix Buehler
2020-03-31use format_placeholder for path_existsFelix Buehler
2020-03-31Merge pull request #398 from Stunkymonkey/format_placeholder-memIngo Bürk
use format_placeholder for mem
2020-03-31use format_placeholder for memFelix Buehler
2020-03-31Merge pull request #396 from Stunkymonkey/format_placeholder-ipv6_addrIngo Bürk
use format_placeholder for ipv6_addr
2020-03-31use format_placeholder for ipv6_addrFelix Buehler
2020-03-31use format_placeholder for loadFelix Buehler
2020-03-28avoid out-of-bounds read after invalid %cpu conversionSamuel Holland
In the case where no CPU number is given, skipping a character of padding actually skips the null terminator, causing further iterations through the loop to read out of bounds. Have sscanf() return the number of characters read, instead of reconstructing it from the CPU number. This was observed as a failure in test 024-cpu-usage-invalid-cpu.
2020-03-11print_volume: Native NetBSD audio supportnia
Avoid using the OSS emulation layer to fetch the master volume, and instead share the audioio code with OpenBSD. Avoid a failed read on the master control's mute enum if it can't be found, because sometimes there isn't one.
2020-03-06Merge pull request #390 from Stunkymonkey/format_placeholder-ethIngo Bürk
use format_placeholder for eth.info
2020-03-03use format_placeholder for disk.infoFelix Buehler
2020-03-03use format_placeholder for eth.infoFelix Buehler
2020-02-21Merge pull request #386 from Stunkymonkey/format_placeholder-dateIngo Bürk
use format_placeholder for ddate
2020-02-21use exact size for known stringsFelix Buehler
2020-02-18use format_placeholder for ddateFelix Buehler
2020-02-18use format_placeholder for cpu_temperatureFelix Buehler
2020-02-17Merge pull request #381 from Stunkymonkey/format_wirelessIngo Bürk
add wireless format-options
2020-02-10add wireless format-optionsFelix Buehler
2020-02-10use format_placeholder for batteryFelix Buehler
2019-11-24print_mem: Fix overflow on 32-bit systemszsugabubus
Values stored as `unsigned long` in "/proc/meminfo" but they were handled as `long`. On 32-bit systems with 4G memory it results in integer overflow.
2019-11-16Introduce format_percentage for battery (#371)grmat
Allow custom output, backwards-compatible to integer_battery_capacity
2019-10-26Introduce memory options 'unit' and 'decimals'MK13
Previously the format placeholders were auto-converted to the maximum possible unit, e.g. /proc/meminfo reports MemTotal of 16307104kB which will get converted to 15.6GiB. It is now possible to specifiy the target unit, e.g. Mi, which will be used for the conversion - in the example it would lead to 15924.9MiB. The resulting number can now be further formatted via the decimal option. It allows to specify the number of decimals to use, e.g. 15.6GiB vs. 15GiB or 15924.9MiB vs. 15925MiB.
2019-10-21wireless: update %signal and %quality based on station info on Linux (#368)Sascha Wessel
Use station info instead of bss info to update %signal and %quality. Bss info is based on scan info and doesn't get updated often. Station info get's updated with every beacon. Bss info still used as fallback.
2019-09-19Mention the return value of the slurp function and the implicationsOlivier Gayot
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
2019-09-19Do not return true from slurp() if it failed to readOlivier Gayot
Failing to read() some data into the destination buffer from the slurp() function was not considered an error. This means that we were potentially leaving the caller with an uninitialized destination buffer without letting him know it's uninitialized. It is quite unlikely that a single call to read() would ever fail right after a successful call to open(..., O_RDONLY). However, one practical example of this happening is when the file being opened is actually a directory. Fixed by propagating the error (i.e. returning false from slurp()) if the call to read() fails. Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
2019-07-29Improve NetBSD port. (#361)Thomas Klausner
Detect and link against ossaudio. Comment out unused code and functions.
2019-07-29print_cpu_usage: use buffered file APIMichael Stapelberg
fixes #343 fixes #344