nixos-configs/config/ags/js/bar/bar.js

60 lines
1.1 KiB
JavaScript
Raw Normal View History

2023-09-04 22:27:34 -04:00
const { Window, CenterBox, Box } = ags.Widget;
import { Separator } from '../common.js';
import { CurrentWindow } from './current-window.js';
import { Workspaces } from './workspaces.js';
import { OskToggle } from './osk-toggle.js';
import { Heart } from './heart.js';
import { TabletToggle } from './tablet-toggle.js';
2023-09-05 14:04:19 -04:00
import { QsToggle } from './quick-settings.js';
2023-09-04 22:27:34 -04:00
export const Bar = Window({
name: 'left-bar',
layer: 'overlay',
anchor: 'top left right',
exclusive: true,
child: CenterBox({
className: 'transparent',
halign: 'fill',
2023-09-05 14:04:19 -04:00
style: 'margin-top: 5px; margin-left: 5px; margin-right: 5px',
2023-09-04 22:27:34 -04:00
vertical: false,
children: [
// Left
Box({
halign: 'start',
children: [
OskToggle,
Separator(12),
TabletToggle,
2023-09-04 22:27:34 -04:00
Separator(12),
Heart,
Separator(12),
Workspaces(),
],
}),
// Center
CurrentWindow,
// Right
Box({
halign: 'end',
2023-09-05 14:04:19 -04:00
children: [
QsToggle,
],
2023-09-04 22:27:34 -04:00
}),
],
}),
});