feat: allow unmuting by moving the pulseaudio slider

This commit is contained in:
Brenno Lemos
2023-10-15 17:50:41 -03:00
parent fd3710d869
commit ecbcf242d5
3 changed files with 63 additions and 0 deletions

View File

@ -83,6 +83,12 @@ class AudioBackend {
std::string getSourceDesc() const { return source_desc_; }
std::string getDefaultSourceName() const { return default_source_name_; }
void toggleSinkMute();
void toggleSinkMute(bool);
void toggleSourceMute();
void toggleSourceMute(bool);
bool isBluetooth();
};