config 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "layer": "top", //Show waybar at the top of other layers.
  3. "position": "top", //Show waybar at the top of the screen.
  4. "spacing": 4, //Gaps between modules. (Othen changes).
  5. "modules-left": ["sway/workspaces"],
  6. "modules-center": ["sway/window"],
  7. "modules-right": ["tray", "network", "pulseaudio", "temperature", "sway/language", "clock"],
  8. "clock": {
  9. "format": " {:%H:%M  %e %b}",
  10. "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
  11. "today-format": "<b>{}</b>",
  12. },
  13. "sway/window": {
  14. "format": "{}",
  15. "max-length": 50,
  16. "tooltip": false,
  17. },
  18. "sway/language": {
  19. "format": "<big></big> {}",
  20. "max-length": 5,
  21. "min-length": 5,
  22. },
  23. "tray": {
  24. "spacing": 5,
  25. },
  26. "network": {
  27. "format-wifi": " {essid}",
  28. "format-ethernet": "{ifname}: {ipaddr}/{cidr} ",
  29. "format-linked": "{ifname} (No IP) ",
  30. "format-disconnected": "",
  31. "format-alt": "{ifname}: {ipaddr}/{cidr}",
  32. "family": "ipv4",
  33. "tooltip-format-wifi": " {ifname} @ {essid}\nIP: {ipaddr}\nStrength: {signalStrength}%\nFreq: {frequency}MHz\n {bandwidthUpBits}  {bandwidthDownBits}",
  34. "tooltip-format-ethernet": " {ifname}\nIP: {ipaddr}\n {bandwidthUpBits}  {bandwidthDownBits}"
  35. },
  36. "pulseaudio": {
  37. "scroll-step": 3,
  38. "format": "{icon} {volume}% {format_source}",
  39. "format-bluetooth": "{volume}% {icon} {format_source}",
  40. "format-bluetooth-muted": " {icon} {format_source}",
  41. "format-muted": " {format_source}",
  42. "format-source": "",
  43. "format-source-muted": "",
  44. "format-icons": {
  45. "headphone": "",
  46. "hands-free": "",
  47. "headset": "",
  48. "phone": "",
  49. "portable": "",
  50. "car": "",
  51. "default": ["", "", ""],
  52. },
  53. "on-click": "pavucontrol",
  54. "on-click-right": "pactl set-source-mute @DEFAULT_SOURCE@ toggle"
  55. },
  56. "temperature": {
  57. "interval": "4",
  58. "hwmon-path": "/sys/class/hwmon/hwmon3/temp1_input",
  59. "critical-threshold": 74,
  60. "format-critical": " {temperatureC}°C",
  61. "format": "{icon} {temperatureC}°C",
  62. "format-icons": ["", "", ""],
  63. "max-length": 7,
  64. "min-length": 7
  65. },
  66. }