diff options
Diffstat (limited to 'waybar')
-rw-r--r-- | waybar/config | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/waybar/config b/waybar/config index d8506d2..8ded906 100644 --- a/waybar/config +++ b/waybar/config @@ -11,7 +11,7 @@ "modules-left":[ "hyprland/workspaces", "custom/launcher", "hyprland/window"], "modules-center":[], - "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "battery", "temperature#0", "temperature#1", "backlight", "network", "clock", "tray", "custom/power"], + "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "battery#BAT0", "battery#BAT1", "temperature#0", "temperature#1", "backlight", "network", "clock", "tray", "custom/power"], // Modules configuration @@ -61,9 +61,9 @@ } }, "mpd": { - "format": "{artist} - {title}", + "format": "{title}", "format-stopped": "", - "format-paused": "{artist} - {title}", + "format-paused": "{title}", "format-disconnected": "", "artist-len": 15, "title-len": 15, @@ -94,7 +94,7 @@ "memory": { "format": "{}% " }, - "battery": { + "battery#BAT0": { "bat": "BAT0", "interval": 60, "state": { @@ -104,20 +104,20 @@ "format": "{capacity}%", "max-length": 25 }, - "temperature#0": { + "temperature#cpu": { "thermal-zone": 0, // "hwmon-path": "cat /sys/class/hwmon/hwmon5/temp1_input", "critical-threshold": 110, - // "format-critical": "{temperatureC}°C {icon}", - "format": "{temperatureC}°C", + "format-critical": "{temperatureC}°C", + "format": "", "format-icons": ["", "", ""] }, - "temperature#1": { + "temperature#gpu": { "thermal-zone": 1, // "hwmon-path": "/sys/class/hwmon/hwmon4/temp1_input", "critical-threshold": 126, - // "format-critical": "{temperatureC}°C {icon}", - "format": "{temperatureC}°C", + "format-critical": "{temperatureC}°C", + "format": "", "format-icons": ["", "", ""] }, "backlight": { @@ -127,7 +127,7 @@ }, "network": { // "interface": "wlp2*", // (Optional) To force the use of this interface - "format-wifi": "{essid} ({signalStrength}%) ", + "format-wifi": "{essid} ", "format-ethernet": "Connected ", "tooltip-format": "{ifname} via {gwaddr} ", "format-linked": "{ifname} (No IP) ", |