Compare commits

...

2 commits

Author SHA1 Message Date
4566e0d449
chore: bump quickshell version 2024-12-21 14:09:11 +01:00
3fb7f739e2
feat: add clear all button for notifications 2024-12-21 14:08:32 +01:00
5 changed files with 71 additions and 44 deletions

14
flake.lock generated
View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1729880355,
"narHash": "sha256-RP+OQ6koQQLX5nw0NmcDrzvGL8HDLnyXt/jHhL1jwjM=",
"lastModified": 1734424634,
"narHash": "sha256-cHar1vqHOOyC7f1+tVycPoWTfKIaqkoe1Q6TnKzuti4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "18536bf04cd71abd345f9579158841376fdd0c5a",
"rev": "d3c42f187194c26d9f0309a8ecc469d6c878ce33",
"type": "github"
},
"original": {
@ -23,11 +23,11 @@
]
},
"locked": {
"lastModified": 1732449022,
"narHash": "sha256-cqjfBI0eUZw2CyKCa/Wzywbv7+ld6yKVdyOLbh0LMrE=",
"lastModified": 1734739124,
"narHash": "sha256-IixrzTK4Xzc51BC+6hh0HUm/i9SXcYJaIYAN883ErzE=",
"ref": "refs/heads/master",
"rev": "31adcaac7662d6c7fbbc901ba11e0d95f0c7fc56",
"revCount": 420,
"rev": "2f194b78949ccf3a8011c58f7eb39324ff936443",
"revCount": 442,
"type": "git",
"url": "https://git.outfoxxed.me/quickshell/quickshell"
},

View file

@ -31,6 +31,13 @@ Singleton {
property alias list: server.trackedNotifications
function clearAll() {
const len = server.trackedNotifications.values.length;
for (let i = 0; i < len; i++) {
list.values[0].dismiss();
}
}
signal incomingRemoved(id: int)
signal incomingAdded(id: Notification)
}

View file

@ -43,6 +43,7 @@ Singleton {
return day ? "weather-few-clouds" : "weather-few-clouds-night";
case "122":
return "weather-overcast";
case "176":
case "296":
return day ? "weather-showers-scattered" : "weather-showers-scattered-night";
default:

View file

@ -1,15 +1,32 @@
import QtQuick
import QtQuick.Layouts
import "../../provider"
import "../../base"
ListView {
ColumnLayout {
Layout.preferredHeight: 1000
Layout.fillHeight: true
Layout.fillWidth: true
width: parent.width
BButton {
width: 30
height: 30
onClicked: () => {
Notifications.clearAll();
}
Layout.alignment: Qt.AlignRight
}
ListView {
id: popupcol
Layout.fillHeight: true
Layout.fillWidth: true
Layout.preferredHeight: 1000
spacing: 10
width: parent.width
Component.onCompleted: () => {}
model: Notifications.list
@ -50,4 +67,5 @@ ListView {
value: true
}
}
}
}

View file

@ -136,6 +136,7 @@ MouseArea {
}
}
}
GridLayout {
id: actions
width: parent.width