My dotfiles. Period.

config 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. output_format = i3bar
  11. }
  12. order += "battery 0"
  13. order += "battery 1"
  14. order += "load"
  15. order += "cpu_usage"
  16. order += "disk /home"
  17. order += "volume master"
  18. order += "tztime local"
  19. battery 0 {
  20. format = "%status%percentage"
  21. format_down = "✕"
  22. status_unk = ""
  23. status_chr = "↑"
  24. status_bat = "↓"
  25. status_full = ""
  26. path = "/sys/class/power_supply/BAT%d/uevent"
  27. low_threshold = 30
  28. threshold_type = percentage
  29. hide_seconds = true
  30. integer_battery_capacity = true
  31. }
  32. battery 1 {
  33. format = "%status%percentage"
  34. format_down = "✕"
  35. status_unk = ""
  36. status_chr = "↑"
  37. status_bat = "↓"
  38. status_full = ""
  39. path = "/sys/class/power_supply/BAT%d/uevent"
  40. low_threshold = 5
  41. threshold_type = percentage
  42. hide_seconds = true
  43. integer_battery_capacity = true
  44. }
  45. tztime local {
  46. format = "(w%V,d%u) %Y-%m-%d %H:%M"
  47. }
  48. disk "/home" {
  49. format = "~:%avail"
  50. threshold_type = "gbytes_avail"
  51. low_threshold = 2
  52. }
  53. volume master {
  54. format = "♪%volume"
  55. format_muted = "♩--%%"
  56. device = "default"
  57. mixer = "Master"
  58. mixer_idx = 0
  59. }