2023-10-31 08:32:40 -04:00
|
|
|
import Audio from 'resource:///com/github/Aylur/ags/service/audio.js';
|
|
|
|
import { Label, Box, Icon } from 'resource:///com/github/Aylur/ags/widget.js';
|
2023-11-06 18:37:23 -05:00
|
|
|
import { execAsync } from 'resource:///com/github/Aylur/ags/utils.js';
|
2023-09-11 19:57:21 -04:00
|
|
|
|
2023-11-13 16:19:09 -05:00
|
|
|
import { SpeakerIcon } from '../misc/audio-icons.js';
|
2023-10-17 13:47:02 -04:00
|
|
|
import Separator from '../misc/separator.js';
|
|
|
|
import EventBox from '../misc/cursorbox.js';
|
2023-09-08 16:00:38 -04:00
|
|
|
|
2023-10-02 12:06:35 -04:00
|
|
|
|
2023-10-17 13:47:02 -04:00
|
|
|
const SpeakerIndicator = props => Icon({
|
2023-10-20 23:11:21 -04:00
|
|
|
...props,
|
2023-11-13 16:19:09 -05:00
|
|
|
binds: [['icon', SpeakerIcon, 'value']],
|
2023-09-08 15:23:52 -04:00
|
|
|
});
|
|
|
|
|
2023-10-17 13:47:02 -04:00
|
|
|
const SpeakerPercentLabel = props => Label({
|
2023-10-20 23:11:21 -04:00
|
|
|
...props,
|
|
|
|
connections: [[Audio, label => {
|
|
|
|
if (Audio.speaker)
|
|
|
|
label.label = Math.round(Audio.speaker.volume * 100) + '%';
|
|
|
|
}, 'speaker-changed']],
|
2023-09-08 15:23:52 -04:00
|
|
|
});
|
|
|
|
|
2023-10-17 13:47:02 -04:00
|
|
|
export default () => EventBox({
|
2023-11-06 18:37:23 -05:00
|
|
|
onPrimaryClickRelease: () => execAsync(['pavucontrol']).catch(print),
|
2023-10-20 23:11:21 -04:00
|
|
|
className: 'toggle-off',
|
|
|
|
child: Box({
|
|
|
|
className: 'audio',
|
|
|
|
children: [
|
|
|
|
SpeakerIndicator(),
|
|
|
|
Separator(5),
|
|
|
|
SpeakerPercentLabel(),
|
|
|
|
],
|
|
|
|
}),
|
2023-09-08 15:23:52 -04:00
|
|
|
});
|