quickshell: deleted an useless entry in Settings.json

This commit is contained in:
2025-10-17 17:54:06 +02:00
parent 20f7320d06
commit 5378c43727
3 changed files with 1 additions and 6 deletions

View File

@@ -1,8 +1,7 @@
{ {
"location": "Munich", "location": "Munich",
"notifications": { "notifications": {
"doNotDisturb": false, "doNotDisturb": false
"lastSeenTs": 1760623982000
}, },
"primaryColor": "#89b4fa", "primaryColor": "#89b4fa",
"showLyricsBar": false "showLyricsBar": false

View File

@@ -15,9 +15,6 @@ NPanel {
preferredWidth: 380 preferredWidth: 380
preferredHeight: 480 preferredHeight: 480
onOpened: function() {
SettingsService.notifications.lastSeenTs = Time.timestamp * 1000;
}
panelContent: Rectangle { panelContent: Rectangle {
id: notificationRect id: notificationRect

View File

@@ -30,7 +30,6 @@ Singleton {
notifications: JsonObject { notifications: JsonObject {
property bool doNotDisturb: false property bool doNotDisturb: false
property real lastSeenTs: 0
} }
} }