diff --git a/modules/Battery.qml b/modules/Battery.qml index 4290633..15e4233 100644 --- a/modules/Battery.qml +++ b/modules/Battery.qml @@ -13,8 +13,8 @@ Row { M.BarIcon { icon: { - if (root.charging) return "\uDB80\uDC84"; - const icons = ["\uDB80\uDC8E", "\uDB80\uDC7A", "\uDB80\uDC7B", "\uDB80\uDC7C", "\uDB80\uDC7D", "\uDB80\uDC7E", "\uDB80\uDC7F", "\uDB80\uDC80", "\uDB80\uDC81", "\uDB80\uDC82", "\uDB85\uDFE2"]; + if (root.charging) return ""; + const icons = ["󰂎", "󰁺", "󰁻", "󰁼", "󰁽", "󰁾", "󰁿", "󰂀", "󰂁", "󰂂", "󱟢"]; return icons[Math.min(10, Math.floor(root.pct / 10))]; } color: root.pct < 15 ? M.Theme.base08 : M.Theme.base05 diff --git a/modules/Bluetooth.qml b/modules/Bluetooth.qml index a7ac784..746b115 100644 --- a/modules/Bluetooth.qml +++ b/modules/Bluetooth.qml @@ -30,7 +30,7 @@ Row { M.BarIcon { visible: root.status === "connected" - icon: "\uF294" + icon: "" anchors.verticalCenter: parent.verticalCenter } Text { diff --git a/modules/Cpu.qml b/modules/Cpu.qml index bb0a860..22ea307 100644 --- a/modules/Cpu.qml +++ b/modules/Cpu.qml @@ -53,7 +53,7 @@ Row { } M.BarIcon { - icon: "\uF2DB" + icon: "" anchors.verticalCenter: parent.verticalCenter } Text { diff --git a/modules/Disk.qml b/modules/Disk.qml index d1e0417..673b6f2 100644 --- a/modules/Disk.qml +++ b/modules/Disk.qml @@ -32,7 +32,7 @@ Row { } M.BarIcon { - icon: "\uF0C9" + icon: "" anchors.verticalCenter: parent.verticalCenter } Text { diff --git a/modules/IdleInhibitor.qml b/modules/IdleInhibitor.qml index 41423f1..4d43e5b 100644 --- a/modules/IdleInhibitor.qml +++ b/modules/IdleInhibitor.qml @@ -7,7 +7,7 @@ M.BarIcon { property bool active: false - icon: root.active ? "\uF06E" : "\uF070" + icon: root.active ? "" : "" Process { id: toggle diff --git a/modules/Memory.qml b/modules/Memory.qml index 9711d86..df7f61a 100644 --- a/modules/Memory.qml +++ b/modules/Memory.qml @@ -32,7 +32,7 @@ Row { } M.BarIcon { - icon: "\uEFC5" + icon: "" anchors.verticalCenter: parent.verticalCenter } Text { diff --git a/modules/Mpris.qml b/modules/Mpris.qml index 52e34f5..1703794 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 ? "\uF04B" : (root.player?.playbackState === MprisPlaybackState.Paused ? "\uDB80\uDFE4" : "\uDB81\uDCDB") + 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 74589e5..03ea73e 100644 --- a/modules/Network.qml +++ b/modules/Network.qml @@ -45,12 +45,12 @@ Row { M.BarIcon { icon: { if (root.state === "wifi") - return "\uF1EB"; + return ""; if (root.state === "eth") - return "\uDB80\uDE00"; + return "󰈀"; if (root.state === "linked") - return "\uDB85\uDE16"; - return "\uDB82\uDCFD"; + return "󱘖"; + return "󰣽"; } anchors.verticalCenter: parent.verticalCenter } diff --git a/modules/Notifications.qml b/modules/Notifications.qml index 63f3890..8fe2178 100644 --- a/modules/Notifications.qml +++ b/modules/Notifications.qml @@ -30,9 +30,9 @@ Row { M.BarIcon { icon: { - if (root.inhibited) return root.count > 0 ? "\uDB80\uDC9B" : "\uDB82\uDE91"; - if (root.dnd) return root.count > 0 ? "\uDB80\uDCA0" : "\uDB82\uDE93"; - return root.count > 0 ? "\uDB84\uDD6B" : "\uDB80\uDC9C"; + if (root.inhibited) return root.count > 0 ? "󰂛" : "󰪑"; + if (root.dnd) return root.count > 0 ? "󰂠" : "󰪓"; + return root.count > 0 ? "󱅫" : "󰂜"; } anchors.verticalCenter: parent.verticalCenter } diff --git a/modules/PowerProfile.qml b/modules/PowerProfile.qml index b26d6ff..8aaf8ad 100644 --- a/modules/PowerProfile.qml +++ b/modules/PowerProfile.qml @@ -8,10 +8,10 @@ M.BarIcon { property string profile: "" icon: { - if (root.profile === "performance") return "\uF0E7"; - if (root.profile === "power-saver") return "\uF06C"; - if (root.profile === "balanced") return "\uF24E"; - return "\uF0E7"; + 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 62d5dd1..5062059 100644 --- a/modules/Temperature.qml +++ b/modules/Temperature.qml @@ -21,7 +21,7 @@ Row { } M.BarIcon { - icon: "\uF2C9" + 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 92a5609..aa7ec21 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 ? "\uF026" : (root.volume > 0.5 ? "\uF028" : (root.volume > 0 ? "\uF027" : "\uF026")) + 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 dfcae8b..e474f37 100644 --- a/modules/Wlogout.qml +++ b/modules/Wlogout.qml @@ -3,7 +3,7 @@ import Quickshell.Io import "." as M M.BarIcon { - icon: "\uF011" + icon: "" Process { id: proc