2023-11-27 15:50:20 -05:00
|
|
|
import PopUpsWidget from 'file:///home/matt/.nix/devices/wim/config/ags/js/notifications/popup.js';
|
|
|
|
import NotifCenterWidget from 'file:///home/matt/.nix/devices/wim/config/ags/js/notifications/center.js';
|
|
|
|
|
|
|
|
import PopupWindow from 'file:///home/matt/.nix/devices/wim/config/ags/js/misc/popup.js';
|
|
|
|
|
|
|
|
|
|
|
|
export const NotifPopups = () => PopupWindow({
|
|
|
|
name: 'notifications',
|
|
|
|
anchor: ['bottom', 'left'],
|
|
|
|
visible: true,
|
|
|
|
transition: 'none',
|
2023-12-19 12:28:29 -05:00
|
|
|
close_on_unfocus: 'stay',
|
2023-11-27 15:50:20 -05:00
|
|
|
monitor: 1,
|
|
|
|
|
|
|
|
child: PopUpsWidget(),
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
export const NotifCenter = () => PopupWindow({
|
|
|
|
name: 'notification-center',
|
|
|
|
anchor: ['bottom', 'right'],
|
2023-11-30 15:17:57 -05:00
|
|
|
margins: [0, 187, 0, 0],
|
2023-11-27 15:50:20 -05:00
|
|
|
transition: 'slide_up',
|
|
|
|
monitor: 1,
|
|
|
|
|
|
|
|
child: NotifCenterWidget(),
|
|
|
|
});
|