{ "layer": "top", // Waybar at top layer // "position": "bottom", // Waybar position (top|bottom|left|right) "height": 30, // Waybar height (to be removed for auto height) // "width": 1280, // Waybar width "spacing": 4, // Gaps between modules (4px) // Choose the order of the modules "modules-left": ["wlr/workspaces", "custom/media"], "modules-center": ["hyprland/window"], "modules-right": ["network", "custom/pacman", "backlight", "temperature", "pulseaudio", "battery", "custom/dunst", "custom/weather", "tray", "clock"], // Modules configuration "wlr/workspaces": { "format": "{icon}", "on-click": "activate", "format-icons": { // "1": "1", // "2": "2", // "3": "3", // "4": "4", // "5": "5", // "6": "6", // "7": "7", // "8": "8", // "9": "9", // "10": "10", // "urgent": "", // "active": "", // "default": "" }, "sort-by-number": true }, "hyprland/window": { "format": "{}", "separate-outputs": true }, "hyprland/language": { "format": "{}", "format-us": "us", "format-lv": "lv", "keyboard-name": "AT Translated Set 2 keyboard" }, "keyboard-state": { "numlock": true, "capslock": true, "format": "{name} {icon}", "format-icons": { "locked": "", "unlocked": "" } }, "mpd": { "format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ⸨{songPosition}|{queueLength}⸩ {volume}% ", "format-disconnected": "Disconnected ", "format-stopped": "{consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ", "unknown-tag": "N/A", "interval": 2, "consume-icons": { "on": " " }, "random-icons": { "off": " ", "on": " " }, "repeat-icons": { "on": " " }, "single-icons": { "on": "1 " }, "state-icons": { "paused": "", "playing": "" }, "tooltip-format": "MPD (connected)", "tooltip-format-disconnected": "MPD (disconnected)" }, "idle_inhibitor": { "format": "{icon}", "format-icons": { "activated": "", "deactivated": "" } }, "tray": { "icon-size": 21, "spacing": 10 }, "clock": { "format": "{:%d.%m.%Y %H:%M:%S}", "tooltip-format": "{:%Y %B}\n{calendar}", "interval": 1 }, "cpu": { "format": "{usage}% ", "tooltip": false }, "memory": { "interval": 30, "format": "{used:0.1f}G/{total:0.1f}G" }, "temperature": { // "thermal-zone": 2, // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input", "critical-threshold": 80, "format-critical": "{temperatureC}°C ", "format": "{temperatureC}°C ", "format-icons": ["", "", ""] }, "backlight": { // "device": "acpi_video1", "format": "{percent}% {icon}", "format-icons": ["", "", "", "", "", "", "", "", ""], "on-click": "brightnessctl -q set 60%", "on-scroll-down": "brightnessctl -q set +1%", "on-scroll-up": "brightnessctl -q set 1%-", }, "battery": { "states": { "good": 95, "warning": 30, "critical": 10 }, "format": "{capacity}% {icon}", "format-charging": "{capacity}% ", "format-plugged": "{capacity}% ", "format-alt": "{time} {icon}", // "format-good": "", // An empty format will hide the module // "format-full": "", "format-icons": ["", "", "", "", ""] }, "network": { "format-wifi": "{essid} ({signalStrength}%) ", "format-ethernet": "{ipaddr}/{cidr} ", "tooltip-format": "{ifname} via {gwaddr} ", "format-linked": "{ifname} (No IP) ", "format-disconnected": "Disconnected ⚠", "format-alt": "{ifname}: {ipaddr}/{cidr}" }, "wireplumber": { "format": "{volume}% {icon}", "format-muted": "", "on-click": "pulsemixer --toggle-mute", "format-icons": ["", "", ""] }, "pulseaudio": { "scroll-step": 1, // %, can be a float "format": "{volume}% {icon} {format_source}", "format-bluetooth": "{volume}% {icon} {format_source}", "format-bluetooth-muted": "{volume}% {icon} {format_source}", "format-muted": "{volume}% {icon} {format_source}", "format-source": "{volume}% ", "format-source-muted": "", "format-icons": { "headphone": "", "hands-free": "", "headset": "", "phone": "", "portable": "", "car": "", "default": ["", "", ""] }, "on-click": "pulsemixer --toggle-mute" }, "custom/media": { "format": "{icon} {}", "return-type": "json", // "max-length": 40, "on-click": "playerctl play-pause", "on-click-right": "playerctl stop", "on-scroll-up": "playerctl next", "on-scroll-down": "playerctl previous", "format-icons": { "spotify": "", "default": "🎜" }, "escape": true, "smooth-scrolling-threshold": 10, // This value was tested using a trackpad, it should be lowered if using a mouse. "exec": "$HOME/.config/waybar/scripts/mediaplayer.py 2> /dev/null" // Script in resources folder // "exec": "$HOME/.config/waybar/scripts/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name */ }, "custom/weather": { "exec": "curl 'https://wttr.in/?format=1'", "interval": 600, "on-click": "curl 'https://wttr.in/?format=1'", }, "custom/vpn": { "format": "VPN ", "exec": "echo '{\"class\": \"connected\"}'", "exec-if": "test -d /proc/sys/net/ipv4/conf/tun0", "return-type": "json", "interval": 5 }, "custom/pipewire": { "tooltip": true, "max-length": 10, "exec": "$HOME/.config/waybar/scripts/pipewire.sh", "on-click": "pulsemixer --toggle-mute", "on-click-right": "qpwgraph" }, "custom/github": { "format": "{} ", "return-type": "json", "interval": 60, "exec": "$HOME/.config/waybar/scripts/github.sh", "on-click": "xdg-open https://github.com/notifications" }, "custom/dunst": { "exec": "~/.config/waybar/scripts/dunst.sh", "on-click": "dunstctl set-paused toggle", "restart-interval": 1, }, }