config 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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_full = ☻
  34. last_full_capacity = false # true
  35. integer_battery_capacity = true
  36. hide_seconds = true
  37. low_threshold = 30
  38. threshold_type = time
  39. }
  40. run_watch DHCP {
  41. pidfile = "/var/run/dhclient*.pid"
  42. }
  43. run_watch VPN {
  44. pidfile = "/var/run/vpnc/pid"
  45. }
  46. tztime local {
  47. format = "%Y-%m-%d %H:%M:%S"
  48. }
  49. load {
  50. format = "%1min %5min"
  51. }
  52. cpu_temperature 0 {
  53. format = "%degrees°C"
  54. path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input"
  55. max_threshold = 80
  56. }
  57. disk "/" {
  58. format = "%avail"
  59. low_threshold = 8
  60. threshold_type = gbytes_avail
  61. }
  62. volume master {
  63. device = pulse
  64. format = "♪ %volume"
  65. format_muted = "♪ %volume" # yellow
  66. }