import QtQuick import QtQuick.Layouts RowLayout { spacing: 0 Text { text: " Radiation:" color: shellRoot.white font { family: shellRoot.fontFamily pixelSize: shellRoot.fontSize } } Text { text: cpu_temperature + "K" color: shellRoot.orange font { family: shellRoot.fontFamily pixelSize: shellRoot.fontSize bold: true } } }