mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Merge pull request #1659 from TheRealLorenz/master
Add 'max-volume' option to pulseaudio
This commit is contained in:
commit
8a82cdff16
@ -96,6 +96,11 @@ Additionally you can control the volume by scrolling *up* or *down* while the cu
|
||||
default: true ++
|
||||
Option to disable tooltip on hover.
|
||||
|
||||
*max-volume*: ++
|
||||
typeof: integer ++
|
||||
default: 100 ++
|
||||
The maximum volume that can be set, in percentage.
|
||||
|
||||
# FORMAT REPLACEMENTS
|
||||
|
||||
*{desc}*: Pulseaudio port's description, for bluetooth it'll be the device name.
|
||||
|
@ -90,12 +90,16 @@ bool waybar::modules::Pulseaudio::handleScroll(GdkEventScroll *e) {
|
||||
double volume_tick = static_cast<double>(PA_VOLUME_NORM) / 100;
|
||||
pa_volume_t change = volume_tick;
|
||||
pa_cvolume pa_volume = pa_volume_;
|
||||
int max_volume = 100;
|
||||
// isDouble returns true for integers as well, just in case
|
||||
if (config_["scroll-step"].isDouble()) {
|
||||
change = round(config_["scroll-step"].asDouble() * volume_tick);
|
||||
}
|
||||
if (config_["max-volume"].isInt()) {
|
||||
max_volume = std::min(0, config_["max-volume"].asInt());
|
||||
}
|
||||
if (dir == SCROLL_DIR::UP) {
|
||||
if (volume_ + 1 <= 100) {
|
||||
if (volume_ + 1 <= max_volume) {
|
||||
pa_cvolume_inc(&pa_volume, change);
|
||||
}
|
||||
} else if (dir == SCROLL_DIR::DOWN) {
|
||||
|
Loading…
Reference in New Issue
Block a user