From 5378c4372785d98e6d52c6e2715fea06187f5a9e Mon Sep 17 00:00:00 2001 From: Uyanide Date: Fri, 17 Oct 2025 17:54:06 +0200 Subject: [PATCH] quickshell: deleted an useless entry in Settings.json --- quickshell/Assets/Config/Settings.json | 3 +-- quickshell/Modules/Panel/NotificationHistoryPanel.qml | 3 --- quickshell/Services/SettingsService.qml | 1 - 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/quickshell/Assets/Config/Settings.json b/quickshell/Assets/Config/Settings.json index 4a364f9..9d2e591 100644 --- a/quickshell/Assets/Config/Settings.json +++ b/quickshell/Assets/Config/Settings.json @@ -1,8 +1,7 @@ { "location": "Munich", "notifications": { - "doNotDisturb": false, - "lastSeenTs": 1760623982000 + "doNotDisturb": false }, "primaryColor": "#89b4fa", "showLyricsBar": false diff --git a/quickshell/Modules/Panel/NotificationHistoryPanel.qml b/quickshell/Modules/Panel/NotificationHistoryPanel.qml index 5ae8b53..903aa0b 100644 --- a/quickshell/Modules/Panel/NotificationHistoryPanel.qml +++ b/quickshell/Modules/Panel/NotificationHistoryPanel.qml @@ -15,9 +15,6 @@ NPanel { preferredWidth: 380 preferredHeight: 480 - onOpened: function() { - SettingsService.notifications.lastSeenTs = Time.timestamp * 1000; - } panelContent: Rectangle { id: notificationRect diff --git a/quickshell/Services/SettingsService.qml b/quickshell/Services/SettingsService.qml index 0081692..e02ab78 100644 --- a/quickshell/Services/SettingsService.qml +++ b/quickshell/Services/SettingsService.qml @@ -30,7 +30,6 @@ Singleton { notifications: JsonObject { property bool doNotDisturb: false - property real lastSeenTs: 0 } }