diff options
Diffstat (limited to 'waybar')
-rw-r--r-- | waybar/config | 45 | ||||
-rw-r--r-- | waybar/style.css | 14 |
2 files changed, 24 insertions, 35 deletions
diff --git a/waybar/config b/waybar/config index d8506d2..49cc19c 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":[ "tray", "mpd", "idle_inhibitor", "wireplumber", "cpu", "memory", "battery", "temperature#cpu", "temperature#gpu", "backlight", "network", "clock", "custom/power"], // Modules configuration @@ -41,7 +41,6 @@ }, "persistent-workspaces": { "eDP-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], - "HDMI-A-1": [ 10, 11, 12, 13, 14, 15, 16, 17, 18 ], }, "on-scroll-up": "hyprctl dispatch split-workspace e+1", "on-scroll-down": "hyprctl dispatch split-workspace e-1", @@ -61,9 +60,9 @@ } }, "mpd": { - "format": "{artist} - {title}", + "format": "{title}", "format-stopped": "", - "format-paused": "{artist} - {title}", + "format-paused": "{title}", "format-disconnected": "", "artist-len": 15, "title-len": 15, @@ -95,7 +94,8 @@ "format": "{}% " }, "battery": { - "bat": "BAT0", + //"bat": "BAT0", + "weighted-average": "true", "interval": 60, "state": { "warning": 30, @@ -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) ", @@ -136,24 +136,13 @@ "max-length": 22, "on-click-right": "bash ~/.config/rofi/wifi_menu/rofi_wifi_menu" }, - "pulseaudio": { + "wireplumber": { // "scroll-step": 1, // %, can be a float "format": "{volume}% {icon}", - "format-bluetooth": "{volume}% {icon}", - "format-bluetooth-muted": "{icon} {format_source}", - "format-muted": "{format_source}", - "format-source": "", - "format-source-muted": "", - "format-icons": { - "headphone": "", - "hands-free": "", - "headset": "", - "phone": "", - "portable": "", - "car": "", - "default": ["", "", ""] - }, - "on-click": "pavucontrol" + "format-muted": "{volume}% ", + "format-icons": ["", "", ""], + "on-click": "volsv -t", + "scroll-step": 0.1 }, "custom/launcher":{ "format": "", diff --git a/waybar/style.css b/waybar/style.css index 88b8900..6c22341 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -45,7 +45,7 @@ window#waybar.hidden { /* #workspaces button:hover { - background: #39c1ed; + background: #6e3c85; color: black; border-bottom: 3px solid #ffffff; @@ -58,7 +58,7 @@ window#waybar.hidden { /* #workspaces button.active:hover { - background: #39c1ed; + background: #6e3c85; color: black; border-bottom: 3px solid #ffffff; } @@ -81,7 +81,7 @@ window#waybar.hidden { #temperature, #backlight, #network, -#pulseaudio, +#wireplumber, #custom-media, #custom-launcher, #custom-power, @@ -126,7 +126,7 @@ window#waybar.hidden { } #battery.charging, #battery.plugged { - color: #26A65B; + color: #198844; background-color: #1b1d1c; } @@ -181,12 +181,12 @@ label:focus { color: #ffffff; } -#pulseaudio { +#wireplumber { background-color: #198844; color: #ffffff; } -#pulseaudio.muted { +#wireplumber.muted { background-color: #1b1d1c; color: #198844; } @@ -278,7 +278,7 @@ label:focus { } #tray { - background-color: #198844; + background-color: transparent; color: #ffffff; } |