Compare commits
2 commits
a7fdacd252
...
690a034175
Author | SHA1 | Date | |
---|---|---|---|
690a034175 | |||
717d53ca9c |
7 changed files with 8 additions and 6 deletions
|
@ -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({
|
||||
|
|
|
@ -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({
|
||||
|
|
|
@ -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(),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -82,6 +82,6 @@ const PopupList = ({ transition = 'none' } = {}) => Box({
|
|||
|
||||
export const NotificationsPopupList = Window({
|
||||
name: `notifications`,
|
||||
anchor: 'top left',
|
||||
anchor: [ 'top', 'left' ],
|
||||
child: PopupList(),
|
||||
});
|
||||
|
|
|
@ -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({
|
||||
|
|
BIN
nixos/flake.lock
BIN
nixos/flake.lock
Binary file not shown.
Loading…
Reference in a new issue