Compare commits
1 commit
74caaa8d0e
...
f349e99110
Author | SHA1 | Date | |
---|---|---|---|
f349e99110 |
3 changed files with 30 additions and 41 deletions
|
@ -7,7 +7,7 @@ repos:
|
|||
rev: v8.18.2
|
||||
hooks:
|
||||
- id: gitleaks
|
||||
stages: [pre-commit]
|
||||
stages: [commit]
|
||||
|
||||
- repo: local
|
||||
hooks:
|
||||
|
@ -17,4 +17,4 @@ repos:
|
|||
language: system
|
||||
files: .*
|
||||
exclude: .*\.(png|jpg|jpeg|age)
|
||||
stages: [pre-commit]
|
||||
stages: [commit]
|
||||
|
|
14
flake.lock
generated
14
flake.lock
generated
|
@ -2,11 +2,11 @@
|
|||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1727122398,
|
||||
"narHash": "sha256-o8VBeCWHBxGd4kVMceIayf5GApqTavJbTa44Xcg5Rrk=",
|
||||
"lastModified": 1729665710,
|
||||
"narHash": "sha256-AlcmCXJZPIlO5dmFzV3V2XF6x/OpNWUV8Y/FMPGd8Z4=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "30439d93eb8b19861ccbe3e581abf97bdc91b093",
|
||||
"rev": "2768c7d042a37de65bb1b5b3268fc987e534c49d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -23,11 +23,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1727391151,
|
||||
"narHash": "sha256-PIEJfHzze4MWwaS7Py+az0IL7A+bZd4pFTE/uAy1b70=",
|
||||
"lastModified": 1729288633,
|
||||
"narHash": "sha256-uItuxRuYGoWRwswpdoPIBN8eRzJNl1GbScjvyhjawqo=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "3ed39b2a798419a168e5c79a2db9f7ee20de70fa",
|
||||
"revCount": 352,
|
||||
"rev": "1adad9e822a9ac66a962823e7d931639782d3558",
|
||||
"revCount": 357,
|
||||
"type": "git",
|
||||
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
|
||||
},
|
||||
|
|
|
@ -2,6 +2,7 @@ import QtQuick
|
|||
import QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
import Quickshell
|
||||
import Quickshell.Widgets
|
||||
import "root:base"
|
||||
import Quickshell.Services.Notifications
|
||||
|
||||
|
@ -18,48 +19,36 @@ MouseArea {
|
|||
required property NotificationUrgency urgency
|
||||
required property int index
|
||||
|
||||
property var close: () => {
|
||||
toast.parent.parent.model.remove(toast.index, 1);
|
||||
}
|
||||
|
||||
hoverEnabled: true
|
||||
height: 26
|
||||
width: 200
|
||||
height: box.height
|
||||
width: box.width
|
||||
|
||||
BRectangle {
|
||||
id: box
|
||||
anchors.fill: parent
|
||||
height: 26
|
||||
width: 200
|
||||
|
||||
Column {
|
||||
BRectangle {
|
||||
anchors.fill: parent
|
||||
anchors.margins: 5
|
||||
|
||||
Row {
|
||||
Layout.fillWidth: true
|
||||
Column {
|
||||
anchors.fill: parent
|
||||
anchors.margins: 5
|
||||
Row {
|
||||
IconImage {
|
||||
source: Quickshell.iconPath(toast.appIcon)
|
||||
height: 16
|
||||
visible: toast.appIcon
|
||||
}
|
||||
|
||||
IconImage {
|
||||
source: Quickshell.iconPath(toast.appIcon)
|
||||
height: 16
|
||||
visible: toast.appIcon
|
||||
Text {
|
||||
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
|
||||
text: toast.body
|
||||
visible: box.state === "expand"
|
||||
}
|
||||
|
||||
Button {
|
||||
onClicked: toast.close()
|
||||
width: 16
|
||||
height: 16
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: toast.body
|
||||
width: parent.width
|
||||
visible: box.state === "expand"
|
||||
wrapMode: Text.Wrap
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -67,7 +56,7 @@ MouseArea {
|
|||
name: "expand"
|
||||
when: toast.containsMouse
|
||||
PropertyChanges {
|
||||
target: toast
|
||||
target: box
|
||||
width: 250
|
||||
height: 140
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue