nixos-configs/hosts/wim/config/ags/js/bar/quick-settings.js

25 lines
570 B
JavaScript
Raw Normal View History

import { Widget, App } from '../../imports.js';
const { Box, Label } = Widget;
2023-09-05 15:10:25 -04:00
2023-09-11 19:57:21 -04:00
import { EventBox } from '../misc/cursorbox.js';
2023-09-05 15:10:25 -04:00
export const QsToggle = EventBox({
className: 'toggle-off',
2023-10-14 13:54:45 -04:00
onPrimaryClickRelease: () => App.toggleWindow('quick-settings'),
connections: [
[App, (box, windowName, visible) => {
if (windowName == 'quick-settings') {
box.toggleClassName('toggle-on', visible);
}
}],
],
2023-09-05 15:10:25 -04:00
child: Box({
className: 'quick-settings-toggle',
vertical: false,
child: Label({
label: "  ",
}),
}),
});