refractor: DeltaruneQuickshell -> Shell

This commit is contained in:
2026-01-23 23:28:40 +02:00
parent 2c32b17b16
commit edb941fe90
22 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
import QtQuick
// import Quickshell
Item {
Text {
x: 1064 + 117
y: 37 + 9
color: "#ffffff"
text: "D$ 4294"
font.pixelSize: 64
font.family: "8bitoperator JVE"
}
// SystemClock {
// id: clock
// precision: SystemClock.Minutes
// }
// Text {
// x: 1064 + 117
// y: 37 + 9 + 64
// color: "#777777"
// text: Qt.formatDateTime(clock.date, "dd/MM - hh:mm")
// font.pixelSize: 32
// font.family: "8bitoperator JVE"
// }
}

View File

@@ -0,0 +1,34 @@
import QtQuick
import Qt5Compat.GraphicalEffects
Item {
id: item
implicitWidth: 149
implicitHeight: 108
property url iconSource: "settings.png"
property bool selected: false
property bool showSoul: true
readonly property color selectedColor: "#ffc90e"
readonly property color unselectedColor: "#614e6b"
state: selected ? "selected" : ""
Image {
id: originalImage
source: "./setting_icons/" + item.iconSource
}
ColorOverlay {
id: colorOverlay
anchors.fill: originalImage
source: originalImage
color: item.selected ? item.selectedColor : item.unselectedColor
}
Image {
id: soul
source: "./soul_small.png"
x: 19
y: 42
visible: item.showSoul && item.selected
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB