nixos-configs/nixosModules/ags-v2/config/widgets/bar/items/audio.tsx
matt1432 99ffdeac4c
All checks were successful
Discord / discord commits (push) Has been skipped
feat(agsV2): add some more bar items
2024-11-03 23:35:53 -05:00

28 lines
731 B
TypeScript

import { bind } from 'astal';
import AstalWp from 'gi://AstalWp';
export default () => {
const speaker = AstalWp.get_default()?.audio.default_speaker;
if (!speaker) {
throw new Error('Could not find default audio devices.');
}
return (
<box className="bar-item audio">
<overlay>
<circularprogress
startAt={0.75}
endAt={0.75}
value={bind(speaker, 'volume')}
rounded
className={bind(speaker, 'mute').as((muted) => muted ? 'disabled' : '')}
/>
<icon icon={bind(speaker, 'volumeIcon')} />
</overlay>
</box>
);
};