Icons: WIP using a proper mapping table

This commit is contained in:
LemmyCook 2025-09-08 21:05:48 -04:00
parent 8da2cdf430
commit a4107c87c0
41 changed files with 2277 additions and 183 deletions

View file

@ -66,7 +66,7 @@ RowLayout {
NIcon {
id: cpuUsageIcon
text: FontService.icons["speed"]
text: Bootstrap.icons["speed"]
Layout.alignment: Qt.AlignVCenter
}
@ -91,7 +91,7 @@ RowLayout {
visible: showCpuTemp
NIcon {
text: FontService.icons["thermometer"]
text: Bootstrap.icons["thermometer"]
Layout.alignment: Qt.AlignVCenter
}
@ -114,7 +114,7 @@ RowLayout {
visible: showMemoryUsage
NIcon {
text: FontService.icons["memory"]
text: Bootstrap.icons["memory"]
Layout.alignment: Qt.AlignVCenter
}
@ -137,7 +137,7 @@ RowLayout {
visible: showNetworkStats
NIcon {
text: FontService.icons["download"]
text: Bootstrap.icons["download"]
Layout.alignment: Qt.AlignVCenter
}
@ -160,7 +160,7 @@ RowLayout {
visible: showNetworkStats
NIcon {
text: FontService.icons["upload"]
text: Bootstrap.icons["upload"]
Layout.alignment: Qt.AlignVCenter
}