My dotfiles. Period.

config 1.7KB

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