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.

91 lines
2.0 KiB

  1. general {
  2. /* output_format = "dzen2" */
  3. colors = true
  4. interval = 5
  5. }
  6. /* order += "ipv6" */
  7. order += "disk /"
  8. order += "run_watch DHCP"
  9. order += "run_watch VPNC"
  10. order += "path_exists VPN"
  11. order += "wireless wlp3s0"
  12. /* order += "ethernet eth0" */
  13. order += "battery 0"
  14. order += "battery 1"
  15. /* order += "cpu_temperature 0" */
  16. order += "load"
  17. order += "volume master"
  18. order += "tztime local"
  19. wireless wlp3s0 {
  20. format_up = "W: (%quality at %essid, %bitrate) %ip"
  21. format_down = "W: down"
  22. }
  23. ethernet eth0 {
  24. # if you use %speed, i3status requires the cap_net_admin capability
  25. format_up = "E: %ip (%speed)"
  26. format_down = "E: down"
  27. }
  28. battery 0 {
  29. /* format = "%status %percentage %remaining %emptytime" */
  30. format = "%status %percentage"
  31. format_down = "No battery"
  32. status_chr = "⚡ CHR"
  33. status_bat = "🔋 BAT"
  34. status_unk = "? UNK"
  35. status_full = "☻ FULL"
  36. path = "/sys/class/power_supply/BAT%d/uevent"
  37. low_threshold = 10
  38. }
  39. battery 1 {
  40. format = "%status %percentage"
  41. format_down = "No battery"
  42. status_chr = "⚡ CHR"
  43. status_bat = "🔋 BAT"
  44. status_unk = "? UNK"
  45. status_full = "☻ FULL"
  46. path = "/sys/class/power_supply/BAT%d/uevent"
  47. low_threshold = 10
  48. }
  49. run_watch DHCP {
  50. pidfile = "/var/run/dhclient*.pid"
  51. }
  52. run_watch VPNC {
  53. # file containing the PID of a vpnc process
  54. pidfile = "/var/run/vpnc/pid"
  55. }
  56. path_exists VPN {
  57. # path exists when a VPN tunnel launched by nmcli/nm-applet is active
  58. path = "/proc/sys/net/ipv4/conf/tun0"
  59. }
  60. tztime local {
  61. format = "%Y-%m-%d %H:%M:%S"
  62. }
  63. load {
  64. format = "%5min"
  65. }
  66. cpu_temperature 0 {
  67. format = "T: %degrees °C"
  68. path = "/sys/devices/platform/coretemp.0/temp1_input"
  69. }
  70. disk "/" {
  71. format = "%free"
  72. }
  73. volume master {
  74. format = "♪: %volume"
  75. format_muted = "♪: muted (%volume)"
  76. device = "default"
  77. mixer = "Master"
  78. mixer_idx = 0
  79. }