Advertisement
zezaocapoeira

/etc/i3status.conf

Jun 10th, 2014
525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 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 = 1
  12. output_format = "i3bar"
  13. color_good = "#AA5500"
  14. color_bad = "#777777"
  15. }
  16.  
  17. order += "disk /"
  18. order += "disk /home"
  19. order += "ethernet eth0"
  20. order += "cpu_temperature 0"
  21. order += "cpu_usage"
  22. order += "tztime local"
  23. order += "tztime local2"
  24.  
  25. ethernet eth0 {
  26. # if you use %speed, i3status requires the cap_net_admin capability
  27. format_up = "➫ %ip (%speed)"
  28. format_down = "E: down"
  29. }
  30.  
  31. tztime local {
  32. format = "%A ➫ %d-%m-%Y"
  33. }
  34.  
  35. tztime local2 {
  36. format = "➫ %H:%M:%S"
  37. }
  38.  
  39. cpu_temperature 0 {
  40. format = "CPU:➫ %degrees°C"
  41. path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input"
  42. }
  43.  
  44. cpu_usage {
  45. format = "➫ %usage"
  46. }
  47.  
  48. disk "/" {
  49. format = "▁ ▂ ▃ ▄ ▅ SLACKWARE ▅ ▄ ▃ ▂ ▁ ➫/raiz_%percentage_used_de_%total"
  50. }
  51.  
  52. disk "/home" {
  53. format = "➫/home_%percentage_used_de_%total"
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement