Add ags stuff, but will probably redo entirely

This commit is contained in:
2025-03-21 16:16:56 +01:00
parent 847ecc8ef7
commit c5b1f64376
26 changed files with 619 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/*
* dotfiles - handler.ts
*
* Created by Janis Hutz 03/21/2025, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
*/
// Handle incoming notifications and keep a list that can be consumed by
// other parts of the astal setup
import Notifd from "gi://AstalNotifd";
const notifd = Notifd.get_default();
const notifications: Notifd.Notification[] = [];
notifd.connect( 'notified', ( _, id ) => {
} );