summaryrefslogtreecommitdiff
path: root/config.def.h
Commit message (Collapse)AuthorAgeFilesLines
* feat: pamixer status bar for volumeJoshua Yun4 days1-2/+7
|
* Sort functions by nameplanet362022-12-191-4/+4
| | | | | Co-authored-by: drkhsh <me@drkhsh.at> Signed-off-by: drkhsh <me@drkhsh.at>
* config.def.h: Remove stray double quote in commentplanet362022-12-191-1/+1
| | | | Signed-off-by: drkhsh <me@drkhsh.at>
* New component: catdrkhsh2022-11-241-0/+1
| | | | | | | Generically reads an arbitrary file natively. Saves a few layers of execution in comparison to using `run_command` with an argument like `cat ./file`.
* separator: kill that useless thingdrkhsh2022-10-281-1/+0
| | | | Just use the format strings dude. :)
* Make volume component work on FreeBSDmichaelbuch12@gmail.com2022-10-261-1/+1
| | | | | - Edit compile instructions - Reuse OpenBSD sndio implementation
* Use the sioctl_open(3) OpenBSD API to access volIngo Feinerer2020-11-301-0/+1
| | | | | | | | | | | | | | | Starting with OpenBSD 6.7 regular users cannot access raw audio devices anymore, for improved security. Instead use the sioctl_open(3) API to access and manipulate audio controls exposed by sndiod(8). On the first call a permanent connection is established with the running sndiod daemon, and call-back functions are registered which are triggered when audio controls are changed (e.g., a USB headset is attached) or when the volume is modified. On subsequent calls we poll for changes; if there are no volume changes this costs virtually nothing. Joint work with Alexandre Ratchov
* Add separator moduleRyan Kes2020-11-301-0/+1
|
* Add FreeBSD support for temperature and battery componentsMichael Buch2019-02-051-3/+5
|
* Consistency with 80 char limit and breaksAaron Marcher2018-07-081-47/+47
|
* Add flexible formatting to keyboard_indicators.Ian Remmler2018-06-041-1/+2
| | | | Updated for style.
* Revert "Add basic backlight percentage support"Aaron Marcher2018-05-271-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 componentMichael Buch2018-05-231-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 supportDavid Demelier2018-05-221-0/+2
| | | | At the moment linux only, but will add support for OpenBSD as well.
* Remove fmt from load_avgs for consistencyAaron Marcher2018-05-211-2/+1
| | | | | In a later commit something like that will be enabled for every component
* implemented openbsd netspeed functionsTobias Tschinkowitz2018-05-191-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.hAaron Marcher2018-05-191-0/+2
|
* Fix indentationAaron Marcher2018-05-181-2/+2
| | | | Tabs for indentation, spaces for alignment
* Add battery_remaining function on OpenBSDTobias Tschinkowitz2018-05-181-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 intAaron Marcher2018-05-171-1/+1
|
* Add comments for battery_* functions on OpenBSDAaron Marcher2018-05-171-0/+2
|
* added comment for temp function (openbsd)Tobias Tschinkowitz2018-05-171-0/+1
|
* Remove cpu_iowaitAaron Marcher2018-05-061-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.hAaron Marcher2018-05-021-14/+17
|
* Remove battery_power for various reasonsAaron Marcher2018-05-011-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.hAaron Marcher2018-04-161-3/+1
|
* slstatus: add cpu_iowaitKurt Van Dijck2017-09-161-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 stringKamil Cholewiński2017-09-101-1/+1
|
* Added IPv6 address functionAaron Marcher2017-08-141-1/+2
| | | | | | - Renamed "ip" function to "ipv4" - Added "ipv6" function - Adjusted README and config.def.h accordingly
* sexy config.def.h tableAaron Marcher2017-08-141-35/+38
|
* Refactor main()Laslo Hunhold2017-08-131-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_strAaron Marcher2017-08-121-1/+1
| | | | | Debugging #define is very difficult. The performance overhead of static const char is negligible.
* Removed #define for update intervalAaron Marcher2017-08-121-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 marcher2017-08-061-0/+1
|
* use a static buffer instead of dynamic memoryAaron Marcher2017-06-131-1/+4
|
* remove format characters from stat functionsAaron Marcher2017-06-121-4/+4
|
* add cpu_freq functionAaron Marcher2017-06-121-0/+1
|
* add battery_power functionAaron Marcher2017-06-121-0/+1
|
* Added keyboard_indicators (Fixes #31)Aaron Marcher2017-01-161-0/+1
|
* add vol_perc notes, add braces to singleline statementsparazyd2016-12-301-1/+1
|
* refactor vol_perc to not depend on alsa librariesparazyd2016-12-281-1/+1
|
* Add "uname -r" functionalityMike Coddington2016-11-161-0/+1
|
* Edit config.def.h function descriptionsJody Leonard2016-10-151-7/+11
|
* better default config.hAaron Marcher2016-10-051-4/+4
|
* battery_state() function addedAaron Marcher2016-09-131-0/+1
|
* simplified vol_perc() (and with that config.def.h is super clean)Aaron Marcher2016-09-131-3/+0
|
* simplified battery_perc() a lot and removed useless options from config.def.hAaron Marcher2016-09-131-5/+0
|
* brought back update intervalAaron Marcher2016-09-091-5/+8
|
* coding style fixesAaron Marcher2016-09-091-9/+8
|
* removed UPDATE_INTERVAL, it is neat to have it but removing it is a tradeoff ↵Ali H. Fardan2016-09-031-3/+0
| | | | worth making, because the clock would act weird if this used to work with cpu_perc().