nixos-configs/devices/wim/config/ags/js/bar/buttons/bluetooth.js

59 lines
1.4 KiB
JavaScript
Raw Normal View History

import Bluetooth from 'resource:///com/github/Aylur/ags/service/bluetooth.js';
import { Label, Box, EventBox, Icon, Revealer } from 'resource:///com/github/Aylur/ags/widget.js';
import Separator from '../../misc/separator.js';
const SPACING = 5;
2023-12-18 18:00:30 -05:00
export default () => {
2023-12-18 18:00:30 -05:00
const icon = Icon().hook(Bluetooth, (self) => {
if (Bluetooth.enabled) {
2023-12-23 01:14:21 -05:00
self.icon = Bluetooth.connected_devices[0] ?
Bluetooth.connected_devices[0].icon_name :
2023-12-18 18:00:30 -05:00
'bluetooth-active-symbolic';
}
else {
self.icon = 'bluetooth-disabled-symbolic';
}
});
const hoverRevLabel = Revealer({
transition: 'slide_right',
2023-12-18 18:00:30 -05:00
child: Box({
2023-12-18 18:00:30 -05:00
children: [
Separator(SPACING),
2023-12-18 18:00:30 -05:00
Label().hook(Bluetooth, (self) => {
2023-12-23 01:14:21 -05:00
self.label = Bluetooth.connected_devices[0] ?
`${Bluetooth.connected_devices[0]}` :
2023-12-18 18:00:30 -05:00
'Disconnected';
}, 'notify::connected-devices'),
],
}),
});
const widget = EventBox({
2023-12-18 18:00:30 -05:00
on_hover: () => {
hoverRevLabel.reveal_child = true;
},
2023-12-18 18:00:30 -05:00
on_hover_lost: () => {
hoverRevLabel.reveal_child = false;
},
2023-12-18 18:00:30 -05:00
child: Box({
2023-12-18 18:00:30 -05:00
class_name: 'bluetooth',
2023-12-18 18:00:30 -05:00
children: [
icon,
hoverRevLabel,
],
}),
});
return widget;
};