Bitcoin Price widget v1.0.0: Plasma 5 applet (EUR via CoinGecko, trend-kleuren, config interval min 5 min)

This commit is contained in:
ArnoldCordewiner
2026-09-05 19:26:24 +02:00
commit e3934f33b6
7 changed files with 327 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import QtQuick 2.15
import QtQuick.Controls 2.15
import org.kde.kirigami 2.5 as Kirigami
Kirigami.FormLayout {
property alias cfg_refreshMinutes: intervalSpin.value
SpinBox {
id: intervalSpin
from: 5
to: 1440
stepSize: 5
editable: true
Kirigami.FormData.label: i18n("Vernieuwinterval (minuten):")
}
}