Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ntfy-notifications/Panel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import QtQuick.Layouts
import qs.Commons
import qs.Services.UI
import qs.Widgets
import Quickshell

Item {
id: root
Expand Down Expand Up @@ -388,6 +389,13 @@ Item {
wrapMode: Text.Wrap
Layout.fillWidth: true
opacity: messageItem.itemOpacity

TapHandler {
onTapped: {
Quickshell.execDetached(["wl-copy", modelData.message.trim()])
pluginApi.withCurrentScreen(s => pluginApi.closePanel(s))
}
}
}

// Tags (if present)
Expand Down