diff --git a/modules/Battery.qml b/modules/Battery.qml index 15e4233..56f532b 100644 --- a/modules/Battery.qml +++ b/modules/Battery.qml @@ -13,7 +13,7 @@ Row { M.BarIcon { icon: { - if (root.charging) return ""; + if (root.charging) return "󰂄"; const icons = ["󰂎", "󰁺", "󰁻", "󰁼", "󰁽", "󰁾", "󰁿", "󰂀", "󰂁", "󰂂", "󱟢"]; return icons[Math.min(10, Math.floor(root.pct / 10))]; } diff --git a/modules/Bluetooth.qml b/modules/Bluetooth.qml index 746b115..97d0ef9 100644 --- a/modules/Bluetooth.qml +++ b/modules/Bluetooth.qml @@ -30,7 +30,7 @@ Row { M.BarIcon { visible: root.status === "connected" - icon: "" + icon: "" anchors.verticalCenter: parent.verticalCenter } Text { diff --git a/modules/Cpu.qml b/modules/Cpu.qml index 22ea307..03defe8 100644 --- a/modules/Cpu.qml +++ b/modules/Cpu.qml @@ -53,7 +53,7 @@ Row { } M.BarIcon { - icon: "" + icon: "" anchors.verticalCenter: parent.verticalCenter } Text { diff --git a/modules/Disk.qml b/modules/Disk.qml index 673b6f2..a092c6d 100644 --- a/modules/Disk.qml +++ b/modules/Disk.qml @@ -32,7 +32,7 @@ Row { } M.BarIcon { - icon: "" + icon: "" anchors.verticalCenter: parent.verticalCenter } Text { diff --git a/modules/IdleInhibitor.qml b/modules/IdleInhibitor.qml index 4d43e5b..d5e20cd 100644 --- a/modules/IdleInhibitor.qml +++ b/modules/IdleInhibitor.qml @@ -7,7 +7,7 @@ M.BarIcon { property bool active: false - icon: root.active ? "" : "" + icon: root.active ? "" : "" Process { id: toggle diff --git a/modules/Memory.qml b/modules/Memory.qml index df7f61a..65a9cc0 100644 --- a/modules/Memory.qml +++ b/modules/Memory.qml @@ -32,7 +32,7 @@ Row { } M.BarIcon { - icon: "" + icon: "" anchors.verticalCenter: parent.verticalCenter } Text { diff --git a/modules/Mpris.qml b/modules/Mpris.qml index 1703794..49b5440 100644 --- a/modules/Mpris.qml +++ b/modules/Mpris.qml @@ -11,7 +11,7 @@ Row { readonly property bool playing: player?.playbackState === MprisPlaybackState.Playing M.BarIcon { - icon: root.playing ? "" : (root.player?.playbackState === MprisPlaybackState.Paused ? "󰏤" : "󰓛") + icon: root.playing ? "" : (root.player?.playbackState === MprisPlaybackState.Paused ? "󰏤" : "󰓛") anchors.verticalCenter: parent.verticalCenter } M.BarLabel { diff --git a/modules/Network.qml b/modules/Network.qml index 03ea73e..f05429c 100644 --- a/modules/Network.qml +++ b/modules/Network.qml @@ -45,7 +45,7 @@ Row { M.BarIcon { icon: { if (root.state === "wifi") - return ""; + return ""; if (root.state === "eth") return "󰈀"; if (root.state === "linked") diff --git a/modules/PowerProfile.qml b/modules/PowerProfile.qml index 8aaf8ad..ff3e676 100644 --- a/modules/PowerProfile.qml +++ b/modules/PowerProfile.qml @@ -8,10 +8,10 @@ M.BarIcon { property string profile: "" icon: { - if (root.profile === "performance") return ""; - if (root.profile === "power-saver") return ""; - if (root.profile === "balanced") return ""; - return ""; + if (root.profile === "performance") return ""; + if (root.profile === "power-saver") return ""; + if (root.profile === "balanced") return ""; + return ""; } Process { diff --git a/modules/Temperature.qml b/modules/Temperature.qml index 5062059..5c39f70 100644 --- a/modules/Temperature.qml +++ b/modules/Temperature.qml @@ -21,7 +21,7 @@ Row { } M.BarIcon { - icon: "" + icon: "" color: root.celsius > 80 ? M.Theme.base08 : M.Theme.base05 anchors.verticalCenter: parent.verticalCenter } diff --git a/modules/Volume.qml b/modules/Volume.qml index aa7ec21..e52e4e4 100644 --- a/modules/Volume.qml +++ b/modules/Volume.qml @@ -15,7 +15,7 @@ Row { readonly property bool muted: sink?.audio?.muted ?? false M.BarIcon { - icon: root.muted ? "" : (root.volume > 0.5 ? "" : (root.volume > 0 ? "" : "")) + icon: root.muted ? "" : (root.volume > 0.5 ? "" : (root.volume > 0 ? "" : "")) anchors.verticalCenter: parent.verticalCenter } M.BarLabel { diff --git a/modules/Wlogout.qml b/modules/Wlogout.qml index e474f37..191d88b 100644 --- a/modules/Wlogout.qml +++ b/modules/Wlogout.qml @@ -3,7 +3,7 @@ import Quickshell.Io import "." as M M.BarIcon { - icon: "" + icon: "" Process { id: proc