1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
//! Volume level
//!
//! This block displays the volume level (according to PulseAudio or ALSA). Right click to toggle mute, scroll to adjust volume.
//!
//! Requires a PulseAudio installation or `alsa-utils` for ALSA.
//!
//! Note that if you are using PulseAudio commands (such as `pactl`) to control your volume, you should select the `"pulseaudio"` (or `"auto"`) driver to see volume changes that exceed 100%.
//!
//! # Configuration
//!
//! Key | Values | Default
//! ----|--------|--------
//! `driver` | `"auto"`, `"pulseaudio"`, `"alsa"`. | `"auto"` (Pulseaudio with ALSA fallback)
//! `format` | A string to customise the output of this block. See below for available placeholders. | <code>\" $icon {$volume.eng(w:2) \|}\"</code>
//! `format_alt` | If set, block will switch between `format` and `format_alt` on every click. | `None`
//! `name` | PulseAudio device name, or the ALSA control name as found in the output of `amixer -D yourdevice scontrols`. | PulseAudio: `@DEFAULT_SINK@` / ALSA: `Master`
//! `device` | ALSA device name, usually in the form "hw:X" or "hw:X,Y" where `X` is the card number and `Y` is the device number as found in the output of `aplay -l`. | `default`
//! `device_kind` | PulseAudio device kind: `source` or `sink`. | `"sink"`
//! `natural_mapping` | When using the ALSA driver, display the "mapped volume" as given by `alsamixer`/`amixer -M`, which represents the volume level more naturally with respect for the human ear. | `false`
//! `step_width` | The percent volume level is increased/decreased for the selected audio device when scrolling. Capped automatically at 50. | `5`
//! `max_vol` | Max volume in percent that can be set via scrolling. Note it can still be set above this value if changed by another application. | `None`
//! `show_volume_when_muted` | Show the volume even if it is currently muted. | `false`
//! `headphones_indicator` | Change icon when headphones are plugged in (pulseaudio only) | `false`
//! `mappings` | Map `output_name` to a custom name. | `None`
//! `mappings_use_regex` | Let `mappings` match using regex instead of string equality. The replacement will be regex aware and can contain capture groups. | `true`
//! `active_port_mappings` | Map `active_port` to a custom name. The replacement will be regex aware and can contain capture groups. | `None`
//!
//! Placeholder | Value | Type | Unit
//! ---------------------|-----------------------------------|--------|---------------
//! `icon` | Icon based on volume | Icon | -
//! `volume` | Current volume. Missing if muted. | Number | %
//! `output_name` | PulseAudio or ALSA device name | Text | -
//! `output_description` | PulseAudio device description, will fallback to `output_name` if no description is available and will be overwritten by mappings (mappings will still use `output_name`) | Text | -
//! `active_port` | Active port (same as information in Ports section of `pactl list cards`). Will be absent if not supported by `driver` or if mapped to `""` in `active_port_mappings`. | Text | -
//!
//! Action | Default button
//! ----------------|---------------
//! `toggle_format` | Left
//! `toggle_mute` | Right
//! `volume_down` | Wheel Down
//! `volume_up` | Wheel Up
//!
//! # Examples
//!
//! Change the default scrolling step width to 3 percent:
//!
//! ```toml
//! [[block]]
//! block = "sound"
//! step_width = 3
//! ```
//!
//! Change the output name shown:
//!
//! ```toml
//! [[block]]
//! block = "sound"
//! format = " $icon $output_name{ $volume|} "
//! [block.mappings]
//! "alsa_output.usb-Harman_Multimedia_JBL_Pebbles_1.0.0-00.analog-stereo" = "Speakers"
//! "alsa_output.pci-0000_00_1b.0.analog-stereo" = "Headset"
//! ```
//!
//! Since the default value for the `device_kind` key is `sink`,
//! to display ***microphone*** block you have to use the `source` value:
//!
//! ```toml
//! [[block]]
//! block = "sound"
//! driver = "pulseaudio"
//! device_kind = "source"
//! ```
//!
//! Display warning in block if microphone if using the wrong port:
//!
//! ```toml
//! [[block]]
//! block = "sound"
//! driver = "pulseaudio"
//! device_kind = "source"
//! format = " $icon { $volume|} {$active_port |}"
//! [block.active_port_mappings]
//! "analog-input-rear-mic" = "" # Mapping to an empty string makes `$active_port` absent
//! "analog-input-front-mic" = "ERR!"
//! ```
//!
//! # Icons Used
//!
//! - `microphone_muted` (as a progression)
//! - `microphone` (as a progression)
//! - `volume_muted` (as a progression)
//! - `volume` (as a progression)
//! - `headphones`
mod alsa;
#[cfg(feature = "pulseaudio")]
mod pulseaudio;
use super::prelude::*;
use crate::wrappers::SerdeRegex;
use indexmap::IndexMap;
use regex::Regex;
make_log_macro!(debug, "sound");
#[derive(Deserialize, Debug, SmartDefault)]
#[serde(deny_unknown_fields, default)]
pub struct Config {
pub driver: SoundDriver,
pub name: Option<String>,
pub device: Option<String>,
pub device_kind: DeviceKind,
pub natural_mapping: bool,
#[default(5)]
pub step_width: u32,
pub format: FormatConfig,
pub format_alt: Option<FormatConfig>,
pub headphones_indicator: bool,
pub show_volume_when_muted: bool,
pub mappings: Option<IndexMap<String, String>>,
#[default(true)]
pub mappings_use_regex: bool,
pub max_vol: Option<u32>,
pub active_port_mappings: IndexMap<SerdeRegex, String>,
}
enum Mappings<'a> {
Exact(&'a IndexMap<String, String>),
Regex(Vec<(Regex, &'a str)>),
}
pub async fn run(config: &Config, api: &CommonApi) -> Result<()> {
let mut actions = api.get_actions()?;
api.set_default_actions(&[
(MouseButton::Left, None, "toggle_format"),
(MouseButton::Right, None, "toggle_mute"),
(MouseButton::WheelUp, None, "volume_up"),
(MouseButton::WheelDown, None, "volume_down"),
])?;
let mut format = config.format.with_default(" $icon {$volume.eng(w:2)|} ")?;
let mut format_alt = match &config.format_alt {
Some(f) => Some(f.with_default("")?),
None => None,
};
let device_kind = config.device_kind;
let step_width = config.step_width.clamp(0, 50) as i32;
let icon = |muted: bool, device: &dyn SoundDevice| -> &'static str {
if config.headphones_indicator && device_kind == DeviceKind::Sink {
let form_factor = device.form_factor();
let active_port = device.active_port();
debug!("form_factor = {form_factor:?} active_port = {active_port:?}");
let headphones = match form_factor {
// form_factor's possible values are listed at:
// https://docs.rs/libpulse-binding/2.25.0/libpulse_binding/proplist/properties/constant.DEVICE_FORM_FACTOR.html
Some("headset") | Some("headphone") | Some("hands-free") | Some("portable") => true,
// Per discussion at
// https://github.com/greshake/i3status-rust/pull/1363#issuecomment-1046095869,
// some sinks may not have the form_factor property, so we should fall back to the
// active_port if that property is not present.
None => active_port.is_some_and(|p| p.to_lowercase().contains("headphones")),
// form_factor is present and is some non-headphone value
_ => false,
};
if headphones {
return "headphones";
}
}
if muted {
match device_kind {
DeviceKind::Source => "microphone_muted",
DeviceKind::Sink => "volume_muted",
}
} else {
match device_kind {
DeviceKind::Source => "microphone",
DeviceKind::Sink => "volume",
}
}
};
type DeviceType = Box<dyn SoundDevice>;
let mut device: DeviceType = match config.driver {
SoundDriver::Alsa => Box::new(alsa::Device::new(
config.name.clone().unwrap_or_else(|| "Master".into()),
config.device.clone().unwrap_or_else(|| "default".into()),
config.natural_mapping,
)?),
#[cfg(feature = "pulseaudio")]
SoundDriver::PulseAudio => Box::new(pulseaudio::Device::new(
config.device_kind,
config.name.clone(),
)?),
#[cfg(feature = "pulseaudio")]
SoundDriver::Auto => {
if let Ok(pulse) = pulseaudio::Device::new(config.device_kind, config.name.clone()) {
Box::new(pulse)
} else {
Box::new(alsa::Device::new(
config.name.clone().unwrap_or_else(|| "Master".into()),
config.device.clone().unwrap_or_else(|| "default".into()),
config.natural_mapping,
)?)
}
}
#[cfg(not(feature = "pulseaudio"))]
SoundDriver::Auto => Box::new(alsa::Device::new(
config.name.clone().unwrap_or_else(|| "Master".into()),
config.device.clone().unwrap_or_else(|| "default".into()),
config.natural_mapping,
)?),
};
let mappings = match &config.mappings {
Some(m) => {
if config.mappings_use_regex {
Some(Mappings::Regex(
m.iter()
.map(|(key, val)| {
Ok((
Regex::new(key)
.error("Failed to parse `{key}` in mappings as regex")?,
val.as_str(),
))
})
.collect::<Result<_>>()?,
))
} else {
Some(Mappings::Exact(m))
}
}
None => None,
};
loop {
device.get_info().await?;
let volume = device.volume();
let muted = device.muted();
let mut output_name = device.output_name();
let mut active_port = device.active_port();
match &mappings {
Some(Mappings::Regex(m)) => {
if let Some((regex, mapped)) =
m.iter().find(|(regex, _)| regex.is_match(&output_name))
{
output_name = regex.replace(&output_name, *mapped).into_owned();
}
}
Some(Mappings::Exact(m)) => {
if let Some(mapped) = m.get(&output_name) {
output_name.clone_from(mapped);
}
}
None => (),
}
if let Some(ap) = &active_port {
if let Some((regex, mapped)) = config
.active_port_mappings
.iter()
.find(|(regex, _)| regex.0.is_match(ap))
{
let mapped = regex.0.replace(ap, mapped);
if mapped.is_empty() {
active_port = None;
} else {
active_port = Some(mapped.into_owned());
}
}
}
let output_description = device
.output_description()
.unwrap_or_else(|| output_name.clone());
let mut values = map! {
"icon" => Value::icon_progression(icon(muted, &*device), volume as f64 / 100.0),
"volume" => Value::percents(volume),
"output_name" => Value::text(output_name),
"output_description" => Value::text(output_description),
[if let Some(ap) = active_port] "active_port" => Value::text(ap),
};
let mut widget = Widget::new().with_format(format.clone());
if muted {
widget.state = State::Warning;
if !config.show_volume_when_muted {
values.remove("volume");
}
}
widget.set_values(values);
api.set_widget(widget)?;
loop {
select! {
val = device.wait_for_update() => {
val?;
break;
}
_ = api.wait_for_update_request() => break,
Some(action) = actions.recv() => match action.as_ref() {
"toggle_format" => {
if let Some(format_alt) = &mut format_alt {
std::mem::swap(format_alt, &mut format);
break;
}
}
"toggle_mute" => {
device.toggle().await?;
}
"volume_up" => {
device.set_volume(step_width, config.max_vol).await?;
}
"volume_down" => {
device.set_volume(-step_width, config.max_vol).await?;
}
_ => (),
}
}
}
}
}
#[derive(Deserialize, Debug, SmartDefault, Clone, Copy)]
#[serde(rename_all = "lowercase")]
pub enum SoundDriver {
#[default]
Auto,
Alsa,
#[cfg(feature = "pulseaudio")]
PulseAudio,
}
#[derive(Deserialize, Debug, SmartDefault, Clone, Copy, PartialEq, Eq, Hash)]
#[serde(rename_all = "lowercase")]
pub enum DeviceKind {
#[default]
Sink,
Source,
}
#[async_trait::async_trait]
trait SoundDevice {
fn volume(&self) -> u32;
fn muted(&self) -> bool;
fn output_name(&self) -> String;
fn output_description(&self) -> Option<String>;
fn active_port(&self) -> Option<String>;
fn form_factor(&self) -> Option<&str>;
async fn get_info(&mut self) -> Result<()>;
async fn set_volume(&mut self, step: i32, max_vol: Option<u32>) -> Result<()>;
async fn toggle(&mut self) -> Result<()>;
async fn wait_for_update(&mut self) -> Result<()>;
}