My dotfiles. Period.

i3status.conf 1.8KB

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