You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

130 lines
2.6 KiB

  1. {
  2. // ☢
  3. //GLOBAL
  4. "layer": "top",
  5. "position": "left",
  6. "width": 15,
  7. "modules-left": [
  8. "cpu",
  9. "memory",
  10. //"battery", // broken for some reason...
  11. "custom/battery",
  12. "temperature",
  13. "disk",
  14. "backlight",
  15. "pulseaudio",
  16. ],
  17. "modules-center": [
  18. ],
  19. "modules-right": [
  20. //"custom/terminal",
  21. "custom/keyshow",
  22. "custom/keyhide"
  23. ],
  24. //MODULES
  25. "custom/battery": {
  26. "exec": "waybar_battery",
  27. "interval": "2",
  28. "return-type": "json",
  29. "format": "⚛ {}"
  30. },
  31. "custom/kill": {
  32. "on-click": "swaymsg kill",
  33. "format": "☠"
  34. },
  35. "custom/keyshow": {
  36. "on-click": "swayphone_keyboard_show",
  37. "format": "K↥"
  38. },
  39. "custom/keyhide": {
  40. "on-click": "swayphone_keyboard_hide",
  41. "format": "K↧"
  42. },
  43. "custom/terminal": {
  44. "on-click": "termite",
  45. "format": ">_"
  46. },
  47. "cpu": {
  48. "interval": 5,
  49. "tooltip": false,
  50. "format": " {usage}%", //Icon: microchip
  51. "states": {
  52. "warning": 70,
  53. "critical": 90
  54. },
  55. "on-click": "termite -e \"htop --sort-key=PERCENT_CPU\""
  56. },
  57. "memory": {
  58. "interval": 5,
  59. "format": " {}%", // Icon: memory
  60. "states": {
  61. "warning": 70,
  62. "critical": 90
  63. },
  64. "on-click": "termite -e \"htop --sort-key=PERCENT_MEM\""
  65. },
  66. "temperature": {
  67. // "thermal-zone": 2,
  68. // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
  69. "critical-threshold": 60,
  70. "format-critical": " {temperatureC}°C",
  71. "format": " {temperatureC}°C"
  72. },
  73. "network": {
  74. "interval": 5,
  75. "format-wifi": "  {essid}", // Icon: wifi
  76. "format-ethernet": " {ifname}", // Icon: ethernet
  77. "format-disconnected": "Disconnected",
  78. "tooltip-format": "{ifname}: {ipaddr}",
  79. "on-click": "swaymsg exec \"termite -e nmtui\""
  80. },
  81. "pulseaudio": {
  82. "scroll-step": 1,
  83. "format": "{icon} {volume}%",
  84. "format-bluetooth": "{icon} {volume}%",
  85. "format-muted": "",
  86. "format-icons": {
  87. "headphones": "",
  88. "handsfree": "",
  89. "headset": "",
  90. "phone": "",
  91. "portable": "",
  92. "car": "",
  93. "default": ["", ""]
  94. },
  95. "on-click": "pavucontrol"
  96. },
  97. "disk": {
  98. "interval": 5,
  99. "format": "✇ {percentage_used:2}%", // alt: 
  100. "path": "/"
  101. },
  102. "backlight": {
  103. // "device": "acpi_video1",
  104. "format": "{icon} {percent}% ",
  105. "states": [0,50],
  106. "format-icons": ["", ""],
  107. "on-click": "termite -e swayphone_backlightselect"
  108. },
  109. }