// https://github.com/Alexays/Waybar/wiki { "layer": "bottom", // Waybar at top layer "position": "top", // Waybar position (top|bottom|left|right) "height": 24, //"width": 1350, // Waybar width // Choose the order of the modules idle_inhibitor "modules-left": ["custom/launcher","sway/workspaces", "sway/mode", "sway/window"], "modules-right": ["backlight", "cpu", "memory", "battery", "pulseaudio", "idle_inhibitor", "clock","tray", "custom/keybindings", "custom/archlinuxlogout"], // Modules configuration "sway/workspaces": { "disable-scroll": false, //"all-outputs": true, "format": "{icon}", "format-icons": { "3": "3", "4": "4", "5": "5", "6": "6", "7": "7", "8": "8", "9": "9", "10": "10", } }, "sway/mode": { "format": "{}" }, "sway/window": { "format": "{}" }, "idle_inhibitor": { "format": "{icon}", "format-icons": { "activated": "", "deactivated": "" } }, "tray": { "icon-size": 14, "spacing": 5 }, "clock": { "tooltip-format": "{:%A %B %d %Y | %H:%M}", "format": " {:%a %d %b %I:%M %p}", //12 hour format //"format": " {:%a %d %b %H:%M}", //24 hour format "format-alt": " {:%d/%m/%Y %H:%M:%S}", //"timezones": [ "$TZ" ], //"max-length": 200 "interval": 1 }, "cpu": { "format": "cpu: {usage: >3}%", "on-click": "alacritty -e bashtop" }, "memory": { "format": "mem: {: >3}%", "on-click": "alacritty -e bashtop" }, "temperature": { // "thermal-zone": 2, // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input", "critical-threshold": 80, // "format-critical": "{temperatureC}°C ", "format": "{temperatureC}°C " }, "backlight": { // "device": "acpi_video1", "format": "{icon} {percent: >3}%", "format-icons": ["", ""], "on-scroll-down": "brightnessctl -c backlight set 5%-", "on-scroll-up": "brightnessctl -c backlight set +5%" }, "battery": { "states": { // "good": 95, "warning": 30, "critical": 15 }, "format": "{icon} {capacity: >3}%", // "format-good": "", // An empty format will hide the module // "format-full": "", "format-icons": ["", "", "", "", ""] //"format-icons": ["", "", "", "", "", "", "", "", "", ""] }, "network": { // "interface": "wlp2s0", // (Optional) To force the use of this interface "format": "⚠ Disabled", "format-wifi": " {essid}", "format-ethernet": " {ifname}: {ipaddr}/{cidr}", "format-disconnected": "⚠ Disconnected", "on-click": "alacritty -e nmtui" }, "pulseaudio": { "scroll-step": 5, "format": "{icon} {volume: >3}%", "format-bluetooth": "{icon} {volume: >3}%", "format-muted":"󰖁 muted", "format-icons": { "headphones": "󰕾", "handsfree": "󰕾", "headset": "󰕾", "phone": "", "portable": "", "car": "", "default": ["󰕾", "󰕾"] }, "on-click": "pavucontrol" }, "custom/pacman": { "format": " {}", "interval": 7200, // every two hours "exec": "i=$(checkupdates); echo \"$i\" |wc -l; echo \"$i\" |column -t |tr '\n' '\r'", // # of updates and tooltip details "exec-if": "exit 0", // always run; consider advanced run conditions "on-click": "alacritty -e sudo pacman -Syu", // update system "signal": 8 }, "custom/power": { "format":" ⏻ ", "on-click": "nwg-bar", "tooltip": false, }, "custom/archlinuxlogout": { "format":" ⏻ ", "on-click": "archlinux-logout", "tooltip": false, }, "custom/keyboard-layout": { "exec": "swaymsg -t get_inputs | grep -m1 'xkb_active_layout_name' | cut -d '\"' -f4", // Interval set only as a fallback, as the value is updated by signal "interval": 30, "format": " {}", // Icon: keyboard // Signal sent by Sway key binding (~/.config/sway/key-bindings) "signal": 1, // SIGHUP "tooltip": false, "on-click": "~/.config/waybar/scripts/keyhint", }, "custom/launcher": { "format":" ", "on-click": "exec nwg-drawer -c 7 -is 70 -spacing 23", "tooltip": false, }, }