Guest User

Untitled

a guest
Jul 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 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. output_format = "i3bar"
  13. }
  14.  
  15. order += "disk /"
  16. # order += "run_watch wifi"
  17. order += "path_exists zt"
  18. order += "ipv6"
  19. #order += "wireless _first_"
  20. #order += "ethernet _first_"
  21. order += "battery 0"
  22. order += "load"
  23. order += "cpu_temperature 0"
  24. order += "tztime today"
  25. order += "tztime utc"
  26. order += "tztime vienna"
  27. order += "tztime wellington"
  28. order += "tztime vancouver"
  29. order += "tztime phoenix"
  30. order += "tztime halifax"
  31. order += "tztime sydney"
  32. # order += "tztime ottawa"
  33.  
  34. wireless _first_ {
  35. format_up = "W: (%quality at %essid) %ip"
  36. format_down = "W: down"
  37. }
  38.  
  39. ethernet _first_ {
  40. # if you use %speed, i3status requires root privileges
  41. format_up = "E: %ip (%speed)"
  42. format_down = "E: down"
  43. }
  44.  
  45. battery 0 {
  46. format = "%status %percentage %remaining"
  47. }
  48.  
  49. run_watch wifi {
  50. pidfile = "/var/run/dhclient.wlan0.pid"
  51. }
  52.  
  53. path_exists zt {
  54. path = "/dev/tap9993"
  55. }
  56.  
  57. tztime today {
  58. format = "%Y%m%d"
  59. timezone = "UTC"
  60. }
  61.  
  62. tztime utc {
  63. format = "UTC %H:%M"
  64. timezone = "UTC"
  65. }
  66.  
  67. tztime vienna {
  68. format = "VIE %H:%M"
  69. timezone = "Europe/Vienna"
  70. }
  71.  
  72. tztime wellington {
  73. format = "NZ %H:%M"
  74. timezone = "Pacific/Auckland"
  75. }
  76.  
  77. tztime halifax {
  78. format = "YHZ %H:%M"
  79. timezone = "America/Halifax"
  80. }
  81.  
  82.  
  83. tztime ottawa {
  84. format = "YOW %H:%M"
  85. timezone = "America/Toronto"
  86. }
  87.  
  88. tztime vancouver {
  89. format = "PHX %H:%M"
  90. timezone = "America/Vancouver"
  91. }
  92.  
  93. tztime phoenix {
  94. format = "YVR %H:%M"
  95. timezone = "America/Phoenix"
  96. }
  97.  
  98. tztime sydney {
  99. format = "SYD %H:%M"
  100. timezone = "Australia/Sydney"
  101. }
  102.  
  103. load {
  104. format = "%1min"
  105. # format = "[%1min, %5min, %15min]"
  106.  
  107. }
  108.  
  109. disk "/" {
  110. format = "%avail"
  111. }
  112.  
  113. cpu_temperature 0 {
  114. format = "%degrees°C"
  115. }
Add Comment
Please, Sign In to add comment