54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
const { Box, CenterBox } = Widget;
|
|
|
|
import Separator from '../misc/separator.ts';
|
|
|
|
import BarRevealer from './fullscreen.ts';
|
|
|
|
import Clock from './items/clock.ts';
|
|
import CurrentWindow from './items/current-window';
|
|
import NotifButton from './items/notif-button.ts';
|
|
import SysTray from './items/systray.ts';
|
|
|
|
const PADDING = 20;
|
|
|
|
export default () => BarRevealer({
|
|
monitor: 1,
|
|
exclusivity: 'exclusive',
|
|
anchor: ['bottom', 'left', 'right'],
|
|
bar: Box({
|
|
vertical: true,
|
|
children: [
|
|
CenterBox({
|
|
class_name: 'bar',
|
|
hexpand: true,
|
|
|
|
start_widget: Box({
|
|
hpack: 'start',
|
|
children: [
|
|
Separator(PADDING),
|
|
|
|
SysTray(),
|
|
],
|
|
}),
|
|
|
|
center_widget: Box({
|
|
children: [
|
|
CurrentWindow(),
|
|
],
|
|
}),
|
|
|
|
end_widget: Box({
|
|
hpack: 'end',
|
|
children: [
|
|
NotifButton(),
|
|
Separator(PADDING / 2),
|
|
Clock(),
|
|
|
|
Separator(PADDING),
|
|
],
|
|
}),
|
|
}),
|
|
Separator(PADDING, { vertical: true }),
|
|
],
|
|
}),
|
|
});
|