From 6b64c8a91804058fea99ed6944753758ee92c543 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 10 May 2025 17:31:04 +1000 Subject: feat: basic notifications Also fix pixel issue with notif area background Add more log rules to run script --- config/NotifsConfig.qml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config/NotifsConfig.qml (limited to 'config') diff --git a/config/NotifsConfig.qml b/config/NotifsConfig.qml new file mode 100644 index 0000000..1b5a852 --- /dev/null +++ b/config/NotifsConfig.qml @@ -0,0 +1,15 @@ +pragma Singleton + +import Quickshell +import QtQuick + +Singleton { + readonly property int defaultExpireTimeout: 3000 + readonly property Sizes sizes: Sizes {} + + component Sizes: QtObject { + readonly property int width: 400 + readonly property int image: 50 + readonly property int badge: 20 + } +} -- cgit v1.2.3-freya