chore: various stuffs

This commit is contained in:
Nydragon 2024-11-25 20:03:47 +01:00
parent 01fdc09393
commit 9aa6046cdd
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
4 changed files with 18 additions and 3 deletions

View file

@ -46,7 +46,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); console.log("Unknown weather code:", weatherCode);
return "weather-none-available"; return "weather-none-available";
} }
} }

View file

@ -7,12 +7,11 @@ import QtQuick
import Quickshell.Services.Mpris import Quickshell.Services.Mpris
import Quickshell import Quickshell
import "../../base" import "../../base"
import "../../provider"
BRectangle { BRectangle {
id: mprisSmall id: mprisSmall
Layout.fillWidth: true Layout.fillWidth: true
Layout.preferredHeight: 200 height: 200
radius: 15 radius: 15
clip: true clip: true

View file

@ -34,6 +34,20 @@ MouseArea {
signal close signal close
TextEdit {
id: textEdit
visible: false
}
Shortcut {
sequences: [StandardKey.Copy]
onActivated: {
textEdit.text = toast.body;
textEdit.selectAll();
textEdit.copy();
}
}
BRectangle { BRectangle {
id: box id: box
width: parent.width width: parent.width

View file

@ -23,6 +23,8 @@ PanelWindow {
width: popups.width width: popups.width
} }
focusable: true
color: "transparent" color: "transparent"
width: 500 width: 500