Advertisement
Guest User

Untitled

a guest
Jul 6th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 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. output_format = "i3bar"
  11. colors = true
  12. interval = 5
  13. }
  14.  
  15. order += "volume master"
  16. order += "disk /"
  17. order += "disk /home"
  18. order += "ethernet net0"
  19. order += "cpu_usage"
  20. order += "cpu_temperature 0"
  21. order += "cpu_temperature 1"
  22. order += "cpu_temperature 2"
  23. order += "cpu_temperature 3"
  24. order += "tztime local"
  25.  
  26.  
  27. ethernet net0 {
  28. format_up = "E: up"
  29. format_down = "E: down"
  30. color_good = "#66CC99"
  31. }
  32.  
  33.  
  34. tztime local {
  35. format = "%m-%d-%Y %I:%M %P"
  36. }
  37.  
  38. cpu_usage {
  39. format = "CPU: %usage"
  40. }
  41.  
  42. cpu_temperature 0 {
  43. format = "Core: %degrees °C"
  44. path = "/sys/devices/platform/coretemp.0/temp1_input"
  45. }
  46.  
  47. cpu_temperature 1 {
  48. format = "%degrees °C"
  49. path = "/sys/devices/platform/coretemp.0/temp2_input"
  50. }
  51.  
  52. cpu_temperature 2 {
  53. format = "%degrees °C"
  54. path = "/sys/devices/platform/coretemp.0/temp3_input"
  55. }
  56.  
  57. cpu_temperature 3 {
  58. format = "%degrees °C"
  59. path = "/sys/devices/platform/coretemp.0/temp4_input"
  60. }
  61.  
  62. disk "/" {
  63. format = "Primary: %free"
  64. }
  65.  
  66. disk "/home" {
  67. format = "Storage: %free"
  68. }
  69.  
  70. volume master {
  71. format = "Vol: %volume"
  72. device = "default"
  73. mixer = "Master"
  74. mixer_idx = 0
  75.  
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement