chore(ags): prepare for next update

This commit is contained in:
matt1432 2023-10-07 21:02:23 -04:00
parent a7fdacd252
commit 717d53ca9c
6 changed files with 8 additions and 6 deletions

View file

@ -19,7 +19,7 @@ import { Revealer } from './fullscreen.js';
export const Bar = Window({
name: 'bar',
layer: 'overlay',
anchor: 'top left right',
anchor: [ 'top', 'left', 'right' ],
exclusive: true,
child: Revealer({
child: CenterBox({

View file

@ -76,8 +76,9 @@ export const Calendar = Window({
name: 'calendar',
layer: 'overlay',
popup: true,
anchor: 'top right',
anchor: [ 'top', 'right' ],
margin: [ 8, 182, 0, 0],
child: PopUp({
name: 'calendar',
child: Box({

View file

@ -22,7 +22,7 @@ export const Closer = Window({
name: 'closer',
popup: true,
layer: 'top',
anchor: 'top bottom left right',
anchor: [ 'top', 'bottom', 'left', 'right' ],
child: EventBox({
onPrimaryClickRelease: () => closeAll(),

View file

@ -138,9 +138,10 @@ const NotificationCenterWidget = Box({
export const NotificationCenter = Window({
name: 'notification-center',
layer: 'overlay',
anchor: 'top right',
anchor: [ 'top', 'right' ],
popup: true,
margin: [ 8, 60, 0, 0 ],
child: PopUp({
name: 'notification-center',
child: NotificationCenterWidget,

View file

@ -82,6 +82,6 @@ const PopupList = ({ transition = 'none' } = {}) => Box({
export const NotificationsPopupList = Window({
name: `notifications`,
anchor: 'top left',
anchor: [ 'top', 'left' ],
child: PopupList(),
});

View file

@ -72,7 +72,7 @@ const QuickSettingsWidget = Box({
export const QuickSettings = Window({
name: 'quick-settings',
layer: 'overlay',
anchor: 'top right',
anchor: [ 'top', 'right' ],
popup: true,
margin: [ 8, 5, 0, ],
child: PopUp({