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

19 lines
489 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(' 󰦧 ')],
}),
});