From 7c0f5533e182a28fcfb208d17ff573e5b1c21f4f Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 13 Aug 2025 23:03:23 +1000 Subject: internal: use icon os logo instead of nerd font Add caelestia logo to use as fallback os logo Add recolour lock fetch logo option --- utils/SysInfo.qml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'utils/SysInfo.qml') diff --git a/utils/SysInfo.qml b/utils/SysInfo.qml index 91ef112..a46bcf4 100644 --- a/utils/SysInfo.qml +++ b/utils/SysInfo.qml @@ -11,8 +11,8 @@ Singleton { property string osPrettyName property string osId property list osIdLike - property string logo - property string osIcon: "" + property string osLogo: `file://${Quickshell.shellDir}/assets/logo.svg` + property bool isDefaultLogo: true property string uptime readonly property string user: Quickshell.env("USER") @@ -32,17 +32,11 @@ Singleton { root.osPrettyName = fd("PRETTY_NAME"); root.osId = fd("ID"); root.osIdLike = fd("ID_LIKE").split(" "); - root.logo = fd("LOGO"); - const osIcons = Icons.osIcons; - if (osIcons.hasOwnProperty(root.osId)) { - root.osIcon = osIcons[root.osId]; - } else { - for (const id of root.osIdLike) { - if (osIcons.hasOwnProperty(id)) { - root.osIcon = osIcons[id]; - } - } + const logo = Quickshell.iconPath(fd("LOGO"), true); + if (logo) { + root.osLogo = logo; + root.isDefaultLogo = false; } } } -- cgit v1.2.3-freya