feat: add DnD, notification status icon and fallback image for media preview

This commit is contained in:
Nydragon 2024-12-23 18:40:11 +01:00
parent 4566e0d449
commit 8b27f1f47d
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
9 changed files with 82 additions and 18 deletions

View file

@ -131,6 +131,7 @@ PanelWindow {
from: 0 from: 0
to: 100 to: 100
stepSize: 1 stepSize: 1
visible: NyshState.binBrightnessctl
value: Brightness.value value: Brightness.value
onMoved: Brightness.value = value onMoved: Brightness.value = value
} }

View file

@ -7,6 +7,7 @@ import "windows/notificationtoast"
import "base" import "base"
import "provider" import "provider"
import Quickshell import Quickshell
import Quickshell.Widgets
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
@ -74,6 +75,19 @@ PanelWindow {
BButton { BButton {
id: mouse id: mouse
onClicked: NyshState.toggleDash() onClicked: NyshState.toggleDash()
IconImage {
source: {
if (NyshState.dndOn)
Quickshell.iconPath("notifications-disabled");
else if (Notifications.list.values.length)
Quickshell.iconPath("notification-active-symbolic");
else
Quickshell.iconPath("notification-inactive-symbolic");
}
anchors.margins: 2
anchors.fill: parent
}
height: width height: width
width: 30 width: 30
anchors.bottom: parent.bottom anchors.bottom: parent.bottom

View file

@ -12,6 +12,7 @@ Rectangle {
anchors.fill: parent anchors.fill: parent
source: root.source source: root.source
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter
fillMode: Image.PreserveAspectCrop
visible: false visible: false
} }
@ -33,8 +34,7 @@ Rectangle {
Rectangle { Rectangle {
id: mask id: mask
width: image.width anchors.fill: parent
height: image.height
layer.enabled: true layer.enabled: true
visible: false visible: false

View file

@ -8,7 +8,7 @@ Singleton {
property int value: -1 property int value: -1
property bool first: true property bool first: true
function refresh() { function refresh() {
get.running = true; get.running = true && NyshState.binBrightnessctl;
} }
onValueChanged: () => { onValueChanged: () => {
@ -21,7 +21,7 @@ Singleton {
Process { Process {
id: get id: get
command: ["brightnessctl", "i", "-m"] command: ["brightnessctl", "i", "-m"]
running: true running: true && NyshState.binBrightnessctl
stdout: SplitParser { stdout: SplitParser {
onRead: rawData => { onRead: rawData => {
const value = Number(rawData.split(",")[3]?.replace("%", "") ?? ""); const value = Number(rawData.split(",")[3]?.replace("%", "") ?? "");

View file

@ -8,6 +8,18 @@ Singleton {
property bool dashOpen: false property bool dashOpen: false
property bool workspaceViewOpen: false property bool workspaceViewOpen: false
property bool binBrightnessctl: false
property bool dndOn: false
Process {
command: ["which", "brightnessctl"]
running: true
onExited: (code, status) => {
state.binBrightnessctl = !code;
}
}
IpcHandler { IpcHandler {
target: "dash" target: "dash"
@ -16,6 +28,18 @@ Singleton {
} }
} }
IpcHandler {
target: "dnd"
function toggle() {
state.toggleDnD();
}
function set(val: bool) {
state.dndOn = val;
}
}
IpcHandler { IpcHandler {
target: "workspace-view" target: "workspace-view"
@ -24,6 +48,10 @@ Singleton {
} }
} }
function toggleDnD() {
state.dndOn = !state.dndOn;
}
function toggleWorkspaceView() { function toggleWorkspaceView() {
state.workspaceViewOpen = !state.workspaceViewOpen; state.workspaceViewOpen = !state.workspaceViewOpen;
} }

View file

@ -47,7 +47,7 @@ Singleton {
case "296": case "296":
return day ? "weather-showers-scattered" : "weather-showers-scattered-night"; return day ? "weather-showers-scattered" : "weather-showers-scattered-night";
default: default:
console.log("Unknown weather code:", weatherCode); weatherCode != "undefined" && console.log("Unknown weather code:", weatherCode);
return "weather-none-available"; return "weather-none-available";
} }
} }

View file

@ -27,15 +27,25 @@ BRectangle {
spacing: 10 spacing: 10
delegate: BRectangle { delegate: BRectangle {
id: card id: card
required property int index
required property var modelData required property var modelData
property MprisPlayer player: modelData property MprisPlayer player: modelData
visible: card.player?.trackTitle
width: mprisSmall.width width: mprisSmall.width
height: mprisSmall.height height: mprisSmall.height
radius: 15 radius: 15
property string albumArt: {
if (card.player?.trackArtUrl?.length)
card.player?.trackArtUrl;
else
Quickshell.iconPath(DesktopEntries.byId(card.player?.desktopEntry).icon);
}
BlurredImage { BlurredImage {
source: card.player?.trackArtUrl ?? "" source: albumArt
anchors.fill: parent anchors.fill: parent
radius: parent.radius radius: parent.radius
} }
@ -47,7 +57,7 @@ BRectangle {
id: im id: im
color: "transparent" color: "transparent"
visible: false visible: false
source: card.player?.trackArtUrl ?? "" source: albumArt
radius: 15 radius: 15
} }

View file

@ -1,5 +1,7 @@
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import QtQuick.Controls
import "../../provider" import "../../provider"
import "../../base" import "../../base"
@ -11,6 +13,7 @@ ColumnLayout {
width: parent.width width: parent.width
RowLayout {
BButton { BButton {
width: 30 width: 30
height: 30 height: 30
@ -20,6 +23,16 @@ ColumnLayout {
Layout.alignment: Qt.AlignRight Layout.alignment: Qt.AlignRight
} }
Switch {
id: sw
text: qsTr("DnD")
onClicked: () => {
NyshState.dndOn = checked;
}
checked: NyshState.dndOn
}
}
ListView { ListView {
id: popupcol id: popupcol
Layout.fillHeight: true Layout.fillHeight: true

View file

@ -1,13 +1,11 @@
import QtQuick import QtQuick
import Quickshell import Quickshell
import QtQuick.Controls import "../../provider"
import "root:provider"
import "root:base"
import "../../widgets/notifications" import "../../widgets/notifications"
PanelWindow { PanelWindow {
id: popups id: popups
visible: true visible: !NyshState.dndOn
anchors { anchors {
left: true left: true
@ -44,7 +42,7 @@ PanelWindow {
id: data id: data
Component.onCompleted: () => { Component.onCompleted: () => {
Notifications.incomingAdded.connect(n => { Notifications.incomingAdded.connect(n => {
data.insert(0, { !NyshState.dndOn && data.insert(0, {
notif: n notif: n
}); });
}); });