diff --git a/src/.config/waybar/config b/src/.config/waybar/config index bf1a71a..904c3d9 100644 --- a/src/.config/waybar/config +++ b/src/.config/waybar/config @@ -11,6 +11,8 @@ "hyprland/window" ], "modules-right": [ + "mpris", + "pulseaudio", "battery", "tray", "clock" @@ -34,6 +36,32 @@ "format": "{:%H:%M}", "tooltip-format": "{:%Y %B}\n{calendar}" }, +"mpris": { + "format": "{player_icon} {dynamic}", + "format-paused": "{status_icon} {dynamic}", + "player-icons": { + "default": "🎵" + }, + "status-icons": { + "paused": "⏸" + }, +}, +"pulseaudio": { + "format": "{volume}% {icon}", + "format-bluetooth": "{volume}% {icon} ", + "format-muted": "", + "format-icons": { + "headphone": "", + "hands-free": "", + "headset": "", + "phone": "", + "portable": "", + "car": "", + "default": ["", ""] + }, + "scroll-step": 1, + "on-click": "qpwgraph", +}, "battery": { "interval": 60, "states": { diff --git a/src/.config/waybar/style.css b/src/.config/waybar/style.css index a789448..a8af95c 100644 --- a/src/.config/waybar/style.css +++ b/src/.config/waybar/style.css @@ -28,8 +28,13 @@ window#waybar { #taskbar button.active { background-image: linear-gradient(0deg, @selection, @background-darker); } -#battery { + +#battery, #mpris, #pulseaudio, #tray { padding: 0 10px; + background: @background; +} +#mpris { + font-size: 9pt; } #clock { padding: 0 4px;