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

18 lines
457 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.toggleOsk(),
connections: [[Tablet, self => {
self.toggleClassName('toggle-on', Tablet.oskState);
}, 'osk-toggled']],
child: Box({
className: 'osk-toggle',
children: [Label(' 󰌌 ')],
}),
});