nixos-configs/devices/wim/config/ags/js/bar/tablet-toggle.js

21 lines
521 B
JavaScript

import { Box, Label } from 'resource:///com/github/Aylur/ags/widget.js';
import EventBox from '../misc/cursorbox.js';
export default () => EventBox({
className: 'toggle-off',
onPrimaryClickRelease: () => Tablet.toggleMode(),
connections: [[Tablet, self => {
self.toggleClassName('toggle-on', Tablet.tabletMode);
}, 'mode-toggled']],
child: Box({
className: 'tablet-toggle',
vertical: false,
children: [Label({
label: ' 󰦧 ',
})],
}),
});