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

20 lines
492 B
JavaScript
Raw Normal View History

import { Box, Label } from 'resource:///com/github/Aylur/ags/widget.js';
2023-11-16 00:48:50 -05:00
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(' 󰦧 ')],
}),
});