mirror of https://github.com/polybar/polybar.git
feat(pulseaudio): Add unmute on scroll option (polybar#3067)
This will allow users to specify in their config if they want the mixers to unmute if they use the scroll wheel on the module. Closes: #3067
This commit is contained in:
parent
c2dd279bf7
commit
82a81ce07c
|
@ -51,6 +51,7 @@ namespace modules {
|
|||
pulseaudio_t m_pulseaudio;
|
||||
|
||||
int m_interval{5};
|
||||
bool m_unmute_on_scroll{false};
|
||||
atomic<bool> m_muted{false};
|
||||
atomic<int> m_volume{0};
|
||||
atomic<double> m_decibels{0};
|
||||
|
|
|
@ -23,6 +23,7 @@ namespace modules {
|
|||
|
||||
// Load configuration values
|
||||
m_interval = m_conf.get(name(), "interval", m_interval);
|
||||
m_unmute_on_scroll = m_conf.get(name(), "unmute-on-scroll", m_unmute_on_scroll);
|
||||
|
||||
auto sink_name = m_conf.get(name(), "sink", ""s);
|
||||
bool m_max_volume = m_conf.get(name(), "use-ui-max", true);
|
||||
|
@ -156,10 +157,16 @@ namespace modules {
|
|||
}
|
||||
|
||||
void pulseaudio_module::action_inc() {
|
||||
if (m_unmute_on_scroll) {
|
||||
m_pulseaudio->set_mute(false);
|
||||
}
|
||||
m_pulseaudio->inc_volume(m_interval);
|
||||
}
|
||||
|
||||
void pulseaudio_module::action_dec() {
|
||||
if (m_unmute_on_scroll) {
|
||||
m_pulseaudio->set_mute(false);
|
||||
}
|
||||
m_pulseaudio->inc_volume(-m_interval);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue