config 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # i3status configuration file.
  2. # see "man i3status" for documentation.
  3. # It is important that this file is edited as UTF-8.
  4. # The following line should contain a sharp s:
  5. # ß
  6. # If the above line is not correctly displayed, fix your editor first!
  7. general {
  8. colors = true
  9. interval = 5
  10. }
  11. # order += "ipv6"
  12. order += "disk /"
  13. # order += "run_watch DHCP"
  14. # order += "run_watch VPN"
  15. order += "wireless _first_"
  16. order += "ethernet _first_"
  17. order += "volume master"
  18. order += "battery 0"
  19. order += "cpu_temperature 0"
  20. order += "load"
  21. order += "tztime local"
  22. wireless _first_ {
  23. format_up = "W: %essid %ip %quality %bitrate"
  24. format_down = "W: down"
  25. }
  26. ethernet _first_ {
  27. # if you use %speed, i3status requires root privileges
  28. format_up = "E: %ip (%speed)"
  29. format_down = "E: down"
  30. }
  31. battery 0 {
  32. format = "%status %percentage %emptytime %consumption"
  33. status_bat = "⚡"
  34. status_chr = "⚇"
  35. status_full = "☻"
  36. last_full_capacity = false # true
  37. integer_battery_capacity = true
  38. hide_seconds = true
  39. low_threshold = 30
  40. threshold_type = time
  41. }
  42. run_watch DHCP {
  43. pidfile = "/var/run/dhclient*.pid"
  44. }
  45. run_watch VPN {
  46. pidfile = "/var/run/vpnc/pid"
  47. }
  48. tztime local {
  49. format = "%Y-%m-%d %H:%M:%S"
  50. }
  51. load {
  52. format = "%1min %5min"
  53. }
  54. cpu_temperature 0 {
  55. format = "%degrees°C"
  56. path = "/sys/devices/platform/coretemp.0/hwmon/hwmon2/temp1_input"
  57. max_threshold = 80
  58. }
  59. disk "/" {
  60. format = "%avail"
  61. low_threshold = 8
  62. threshold_type = gbytes_avail
  63. }
  64. volume master {
  65. device = pulse # default sink
  66. format = "♪ %volume"
  67. format_muted = "♪ %volume" # yellow
  68. }