My dotfiles. Period.

i3status.conf 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 += "battery 0"
  12. order += "battery 1"
  13. order += "load"
  14. order += "cpu_usage"
  15. order += "disk /"
  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 = "%Y-%m-%d %H:%M"
  47. }
  48. disk "/" {
  49. format = "/:%avail"
  50. threshold_type = "gbytes_avail"
  51. low_threshold = 2
  52. }
  53. disk "/home" {
  54. format = "~:%avail"
  55. threshold_type = "gbytes_avail"
  56. low_threshold = 2
  57. }
  58. volume master {
  59. format = "♪%volume"
  60. format_muted = "♩--%%"
  61. device = "default"
  62. mixer = "Master"
  63. mixer_idx = 0
  64. }