Guest User

Untitled

a guest
Aug 15th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. # i3status configuration file.
  2. # see "man i3status" for documentation.
  3.  
  4. # It is important that this file is edited as UTF-8.
  5. # The following line should contain a sharp s:
  6. # ß
  7. # If the above line is not correctly displayed, fix your editor first!
  8.  
  9. general {
  10. colors = true
  11. interval = 5
  12. # foreground
  13. # color_good="#2e5ca0"
  14. color_good="#4b73a0"
  15. # warning
  16. # color_bad="#4186e0"
  17. color_bad="#81b7d3"
  18. # gray
  19. # color_degraded="#384780"
  20. color_degraded="#bbc0c0"
  21. #color_good = "#2AA198"
  22. #color_bad = "#586E75"
  23. #color_degraded = "#DC322F"
  24. }
  25.  
  26. order += "cpu_usage"
  27. # order += "load"
  28. order += "disk /"
  29. # order += "disk /home"
  30. order += "wireless _first_"
  31. order += "ethernet _first_"
  32. order += "battery 0"
  33. order += "load"
  34. order += "tztime local"
  35. # order += "ipv6"
  36.  
  37. cpu_usage {
  38. format = "  %usage "
  39. }
  40.  
  41. load {
  42. format = "  %1min "
  43. # max_threshold = 0.3
  44. }
  45.  
  46. disk "/" {
  47. # format = " hdd %avail "
  48. format = "  %avail "
  49. }
  50.  
  51. ethernet _first_ {
  52. # if you use %speed, i3status requires root privileges
  53. format_up = "  %ip" #%speed "
  54. format_down = " / "
  55. }
  56.  
  57. battery 0 {
  58. # format = "%status %percentage %remaining %emptytime"
  59. format = " %status %percentage"
  60. format_down = "No battery"
  61. # last_full_capacity = true
  62. integer_battery_capacity = true
  63. # status_chr = ""
  64. status_chr = ""
  65. status_bat = ""
  66. # status_bat = "bat"
  67. # status_bat = "☉"
  68. # status_full = ""
  69. status_full = ""
  70. low_threshold = 15
  71. threshold_type = time
  72. }
  73.  
  74. tztime local {
  75. # format = "%Y-%m-%d %H:%M:%S"
  76. format = "  %d.%m.  %I:%M %p "
  77. }
Add Comment
Please, Sign In to add comment