2023-10-31 08:32:40 -04:00
|
|
|
import { Window, CenterBox, Box } from 'resource:///com/github/Aylur/ags/widget.js';
|
2023-09-04 22:27:34 -04:00
|
|
|
|
2024-01-13 23:38:31 -05:00
|
|
|
import Separator from '../misc/separator.ts';
|
2023-11-21 01:29:46 -05:00
|
|
|
|
2024-01-13 23:38:31 -05:00
|
|
|
import Battery from './items/battery.ts';
|
|
|
|
import Clock from './items/clock.ts';
|
|
|
|
import CurrentWindow from './items/current-window.ts';
|
|
|
|
import Heart from './items/heart.ts';
|
|
|
|
import NotifButton from './items/notif-button.ts';
|
|
|
|
import OskToggle from './items/osk-toggle.ts';
|
|
|
|
import QsToggle from './items/quick-settings.ts';
|
|
|
|
import SysTray from './items/systray.ts';
|
|
|
|
import TabletToggle from './items/tablet-toggle.ts';
|
|
|
|
import Workspaces from './items/workspaces.ts';
|
2023-09-04 22:27:34 -04:00
|
|
|
|
2024-01-13 23:38:31 -05:00
|
|
|
import BarReveal from './fullscreen.ts';
|
2023-10-02 12:06:35 -04:00
|
|
|
|
2023-11-21 01:29:46 -05:00
|
|
|
const SPACING = 12;
|
|
|
|
|
2023-10-22 13:39:13 -04:00
|
|
|
|
2023-11-15 16:01:30 -05:00
|
|
|
export default () => Window({
|
2023-10-20 23:11:21 -04:00
|
|
|
name: 'bar',
|
|
|
|
layer: 'overlay',
|
|
|
|
anchor: ['top', 'left', 'right'],
|
2023-12-11 23:24:02 -05:00
|
|
|
margins: [-1, 0, 0, 0],
|
2023-11-15 15:11:55 -05:00
|
|
|
exclusivity: 'exclusive',
|
2023-11-16 00:48:50 -05:00
|
|
|
child: BarReveal({
|
2023-10-20 23:11:21 -04:00
|
|
|
child: CenterBox({
|
2023-12-11 23:24:02 -05:00
|
|
|
css: 'margin: 6px 5px 5px 5px',
|
2023-12-18 18:00:30 -05:00
|
|
|
class_name: 'bar',
|
2023-09-04 22:27:34 -04:00
|
|
|
|
2023-12-18 18:00:30 -05:00
|
|
|
start_widget: Box({
|
2023-11-06 18:37:23 -05:00
|
|
|
hpack: 'start',
|
2023-10-20 23:11:21 -04:00
|
|
|
children: [
|
2023-09-04 22:27:34 -04:00
|
|
|
|
2023-10-20 23:11:21 -04:00
|
|
|
OskToggle(),
|
2023-09-04 22:27:34 -04:00
|
|
|
|
2023-11-21 01:29:46 -05:00
|
|
|
Separator(SPACING),
|
2023-09-06 17:36:26 -04:00
|
|
|
|
2023-10-20 23:11:21 -04:00
|
|
|
TabletToggle(),
|
2023-09-04 22:27:34 -04:00
|
|
|
|
2023-11-21 01:29:46 -05:00
|
|
|
Separator(SPACING),
|
2023-09-08 15:23:52 -04:00
|
|
|
|
2023-10-20 23:11:21 -04:00
|
|
|
SysTray(),
|
2023-09-08 15:23:52 -04:00
|
|
|
|
2023-12-05 11:35:40 -05:00
|
|
|
Workspaces(),
|
2023-09-18 16:14:11 -04:00
|
|
|
|
2023-11-21 01:29:46 -05:00
|
|
|
Separator(SPACING),
|
2023-09-18 16:14:11 -04:00
|
|
|
|
2023-12-05 11:35:40 -05:00
|
|
|
CurrentWindow(),
|
2023-09-18 16:14:11 -04:00
|
|
|
|
2023-10-20 23:11:21 -04:00
|
|
|
],
|
|
|
|
}),
|
2023-09-18 16:14:11 -04:00
|
|
|
|
2023-12-18 18:00:30 -05:00
|
|
|
center_widget: Box({
|
2023-10-20 23:11:21 -04:00
|
|
|
children: [
|
2023-11-21 01:29:46 -05:00
|
|
|
Separator(SPACING),
|
2023-10-23 17:35:57 -04:00
|
|
|
|
2023-12-05 11:35:40 -05:00
|
|
|
Clock(),
|
2023-10-23 17:35:57 -04:00
|
|
|
|
2023-11-21 01:29:46 -05:00
|
|
|
Separator(SPACING),
|
2023-10-20 23:11:21 -04:00
|
|
|
],
|
|
|
|
}),
|
2023-09-18 16:14:11 -04:00
|
|
|
|
2023-12-18 18:00:30 -05:00
|
|
|
end_widget: Box({
|
2023-11-06 18:37:23 -05:00
|
|
|
hpack: 'end',
|
2023-10-20 23:11:21 -04:00
|
|
|
children: [
|
2023-12-07 15:28:58 -05:00
|
|
|
Heart(),
|
2023-12-05 11:35:40 -05:00
|
|
|
|
|
|
|
Separator(SPACING),
|
|
|
|
|
|
|
|
Battery(),
|
2023-09-05 19:22:54 -04:00
|
|
|
|
2023-11-21 01:29:46 -05:00
|
|
|
Separator(SPACING),
|
2023-09-05 19:22:54 -04:00
|
|
|
|
2023-10-20 23:11:21 -04:00
|
|
|
NotifButton(),
|
2023-09-05 15:10:25 -04:00
|
|
|
|
2023-11-21 01:29:46 -05:00
|
|
|
Separator(SPACING),
|
2023-09-05 15:10:25 -04:00
|
|
|
|
2023-10-20 23:11:21 -04:00
|
|
|
QsToggle(),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
}),
|
2023-09-08 14:14:10 -04:00
|
|
|
}),
|
2023-09-04 22:27:34 -04:00
|
|
|
});
|