We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5e8d6 commit f7660a4Copy full SHA for f7660a4
SharpCaster.Console/Controllers/MediaController.cs
@@ -415,6 +415,17 @@ await AnsiConsole.Status().StartAsync($"{(newMediaMuteState ? "Muting" : "Unmuti
415
statusTable.AddRow("[cyan]Progress[/]", $"[white]{progress:F1}%[/]");
416
}
417
418
+ // Display media volume and mute status
419
+ if (status.Volume != null)
420
+ {
421
+ statusTable.AddRow("[cyan]Media Volume[/]", $"[white]{status.Volume.Level:P0}[/]");
422
+ statusTable.AddRow("[cyan]Media Muted[/]", status.Volume.Muted == true ? "[red]Yes[/]" : "[green]No[/]");
423
+ }
424
+ else
425
426
+ statusTable.AddRow("[cyan]Media Volume[/]", "[dim]Not available[/]");
427
428
+
429
AnsiConsole.Write(statusTable);
430
431
else
0 commit comments