Advertisement
Guest User

Waybar config

a guest
Jun 30th, 2023
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. {
  2. "layer": "top",
  3. "height": 40,
  4. "modules-left": ["sway/workspaces"],
  5. "modules-center": ["clock"],
  6. "modules-right": ["cpu", "temperature", "memory", "pulseaudio", "network", "tray"],
  7. "sway/workspaces": {
  8. "disable-scroll": true,
  9. },
  10. "cpu": {
  11. "format": "{usage}% 󰻠"
  12. },
  13. "temperature": {
  14. // "thermal-zone": 2,
  15. // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
  16. "critical-threshold": 80,
  17. // "format-critical": "{temperatureC}°C {icon}",
  18. "format": "{temperatureC}°C {icon}",
  19. "format-icons": ["", "", "", ""]
  20. },
  21. "memory": {
  22. "format": "{}% "
  23. },
  24. "pulseaudio": {
  25. // "scroll-step": 1, // %, can be a float
  26. "format": "{volume}% {icon} {format_source}",
  27. "format-bluetooth": "{volume}% {icon} {format_source}",
  28. "format-bluetooth-muted": " {icon} {format_source}",
  29. "format-muted": " {format_source}",
  30. "format-source": "{volume}% ",
  31. "format-source-muted": "",
  32. "format-icons": {
  33. "headphone": "",
  34. "hands-free": "",
  35. "headset": "",
  36. "phone": "",
  37. "portable": "",
  38. "car": "",
  39. "default": ["󰕿", "󰖀", "󰕾"]
  40. },
  41. "on-click": "pavucontrol"
  42. },
  43. "network": {
  44. "format-wifi": "{essid} ({signalStrength}%) {icon}",
  45. "format-icons": ["󰤟", "󰤢", "󰤥", "󰤨"]
  46. },
  47. "tray": {
  48. "spacing": 16
  49. }
  50. }
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement