feat(bar): add speaker and microphone controls

This commit is contained in:
tux
2025-09-25 16:07:16 +05:30
parent 7588a374e5
commit 96431e101a
7 changed files with 60 additions and 0 deletions

36
widgets/bar/volume.tsx Normal file
View File

@@ -0,0 +1,36 @@
import { createBinding } from "ags";
import AstalWp from "gi://AstalWp";
export const Volume = () => {
const { defaultSpeaker: speaker, defaultMicrophone: microphone } =
AstalWp.get_default()!;
const speakerIsMuted = createBinding(speaker, "mute");
return (
<>
<box cssClasses={["pill", "volume"]} spacing={5}>
<image
iconName={speakerIsMuted((val) =>
val ? "fa-speaker-muted-symbolic" : "fa-speaker-symbolic",
)}
/>
<slider
widthRequest={100}
onChangeValue={({ value }) => speaker.set_volume(value)}
value={createBinding(speaker, "volume")}
/>
</box>
<box cssClasses={["pill", "volume"]} spacing={5}>
<image iconName="fa-microphone-symbolic" />
<slider
widthRequest={100}
onChangeValue={({ value }) => microphone.set_volume(value)}
value={createBinding(microphone, "volume")}
/>
</box>
</>
);
};