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({ export const Bar = Window({
name: 'bar', name: 'bar',
layer: 'overlay', layer: 'overlay',
anchor: 'top left right', anchor: [ 'top', 'left', 'right' ],
exclusive: true, exclusive: true,
child: Revealer({ child: Revealer({
child: CenterBox({ child: CenterBox({

View file

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

View file

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

View file

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

View file

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

View file

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