summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-07format_placeholder percent testsFelix 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-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-04-03Merge pull request #403 from YaguraStation/patch-1Ingo Bürk
Update net-speed.sh
2020-04-01Update net-speed.shreuben honigwachs
Added the common prefix `enx` as possible string for interface detection. See https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/
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-31Merge pull request #397 from Stunkymonkey/format_placeholder-loadIngo Bürk
use format_placeholder for load
2020-03-31use format_placeholder for ipv6_addrFelix Buehler
2020-03-31use format_placeholder for loadFelix Buehler
2020-03-30Merge pull request #387 from ilya-bystrov/masterIngo Bürk
Small wrapper with the ability to add custom info in any position
2020-03-30Merge pull request #394 from smaeul/patch/cpu-usageIngo Bürk
avoid out-of-bounds read after invalid %cpu conversion
2020-03-30Merge pull request #395 from myTerminal/patch-1Ingo Bürk
perform few minor improvements in i3status.man
2020-03-29format the leftover directivesMohammed Ismail Ansari
2020-03-29format leftover color_degraded and color_bad directivesMohammed Ismail Ansari
2020-03-29add more specificity to describe color_degraded and color_badMohammed Ismail Ansari
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-19Merge pull request #392 from banderlog/patch-1Orestis Floros
add autoconf to requirements
2020-03-16add autoconf to requirementsBorys Kabakov
Update README.md upd readme
2020-03-15Merge pull request #391 from niacat/masterIngo Bürk
print_volume: Native NetBSD audio API support
2020-03-15Merge pull request #393 from banderlog/patch-2Ingo Bürk
Update README.md
2020-03-12Update README.mdBorys Kabakov
Add configure option to avoid memory leak failures like described in #362
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-06Merge pull request #389 from Stunkymonkey/format_placeholder-diskIngo Bürk
use format_placeholder for disk.info
2020-03-03use format_placeholder for disk.infoFelix Buehler
2020-03-03use format_placeholder for eth.infoFelix Buehler
2020-02-21Wrapper with the ability to add custom info in any positionIlya Bystrov
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-20Merge pull request #385 from Stunkymonkey/format_placeholder-cpu_tempIngo Bürk
use format_placeholder for cpu_temperature
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-17Merge pull request #380 from Stunkymonkey/percent-splitIngo Bürk
use format_placeholder(i3lib) for battery_info
2020-02-10add wireless format-optionsFelix Buehler
2020-02-10use format_placeholder for batteryFelix Buehler
2019-11-25Merge pull request #373 from zsugabubus/fix-memoryIngo Bürk
print_mem: Fix overflow on 32-bit systems
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-28Merge pull request #369 from 31KM/masterIngo Bürk
Introduce memory options 'unit' and 'decimals'
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.