fix(ags notif): make first notif appear
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
d59a949e2a
commit
a609bdc61b
3 changed files with 9 additions and 11 deletions
|
@ -1,15 +1,14 @@
|
||||||
import PopUpsWidget from 'file:///home/matt/.nix/devices/wim/config/ags/js/notifications/popup.js';
|
import { Window } from 'resource:///com/github/Aylur/ags/widget.js';
|
||||||
|
|
||||||
import NotifCenterWidget from 'file:///home/matt/.nix/devices/wim/config/ags/js/notifications/center.js';
|
import NotifCenterWidget from 'file:///home/matt/.nix/devices/wim/config/ags/js/notifications/center.js';
|
||||||
|
import PopUpsWidget from 'file:///home/matt/.nix/devices/wim/config/ags/js/notifications/popup.js';
|
||||||
|
|
||||||
import PopupWindow from 'file:///home/matt/.nix/devices/wim/config/ags/js/misc/popup.js';
|
import PopupWindow from 'file:///home/matt/.nix/devices/wim/config/ags/js/misc/popup.js';
|
||||||
|
|
||||||
|
|
||||||
export const NotifPopups = () => PopupWindow({
|
export const NotifPopups = () => Window({
|
||||||
name: 'notifications',
|
name: 'notifications',
|
||||||
anchor: ['bottom', 'left'],
|
anchor: ['bottom', 'left'],
|
||||||
visible: true,
|
|
||||||
transition: 'none',
|
|
||||||
close_on_unfocus: 'stay',
|
|
||||||
monitor: 1,
|
monitor: 1,
|
||||||
|
|
||||||
child: PopUpsWidget(),
|
child: PopUpsWidget(),
|
||||||
|
|
|
@ -1,15 +1,12 @@
|
||||||
import PopUpsWidget from './popup.js';
|
import { Window } from 'resource:///com/github/Aylur/ags/widget.js';
|
||||||
import NotifCenterWidget from './center.js';
|
import NotifCenterWidget from './center.js';
|
||||||
|
import PopUpsWidget from './popup.js';
|
||||||
|
|
||||||
import PopupWindow from '../misc/popup.js';
|
import PopupWindow from '../misc/popup.js';
|
||||||
|
|
||||||
export const NotifPopups = () => PopupWindow({
|
export const NotifPopups = () => Window({
|
||||||
name: 'notifications',
|
name: 'notifications',
|
||||||
anchor: ['top', 'left'],
|
anchor: ['top', 'left'],
|
||||||
visible: true,
|
|
||||||
transition: 'none',
|
|
||||||
close_on_unfocus: 'stay',
|
|
||||||
|
|
||||||
child: PopUpsWidget(),
|
child: PopUpsWidget(),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,8 @@ const DELAY = 2000;
|
||||||
|
|
||||||
export default () => Box({
|
export default () => Box({
|
||||||
vertical: true,
|
vertical: true,
|
||||||
|
// Needed so it occupies space at the start
|
||||||
|
css: 'padding: 1px;',
|
||||||
|
|
||||||
setup: (self) => {
|
setup: (self) => {
|
||||||
/** @param {number} id */
|
/** @param {number} id */
|
||||||
|
|
Loading…
Reference in a new issue