Guest User

status

a guest
Aug 14th, 2014
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 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 = 1
  13. }
  14.  
  15. order += "tztime local"
  16. #order += "ipv6"
  17. #order += "disk /"
  18. #order += "run_watch DHCP"
  19. #order += "run_watch VPN"
  20. #order += "wireless wlan0"
  21. #order += "ethernet eth0"
  22. #order += "battery 0"
  23. #order += "load"
  24. #order += "cpu_temperature 0"
  25. #order += "cpu_usage 0"
  26. #order += "volume master"
  27.  
  28. wireless wlan0 {
  29. format_up = "W: (%quality at %essid) %ip"
  30. format_down = "W: down"
  31. }
  32.  
  33. ethernet eth0 {
  34. # if you use %speed, i3status requires root privileges
  35. format_up = "E: (%speed)"
  36. format_down = "E: down"
  37. }
  38.  
  39. battery 0 {
  40. #format = "%status %percentage %remaining"
  41. #format = "Bat: %status %remaining (%emptytime %consumption)"
  42. #format = "Bat: %status %percentage"
  43. }
  44.  
  45. run_watch DHCP {
  46. pidfile = "/var/run/dhclient*.pid"
  47. }
  48.  
  49. run_watch VPN {
  50. pidfile = "/var/run/vpnc/pid"
  51. }
  52.  
  53. tztime local {
  54. # format = "%a, %d %b - %H:%M"
  55. format = ": %H:%M:%S | %a | %d/%b/%Y : "
  56. }
  57.  
  58. load {
  59. format = "%1min"
  60. }
  61.  
  62. cpu_usage {
  63. format = "CPU: %usage"
  64. }
  65.  
  66. disk "/" {
  67. format = "HD: %percentage_used usado, %avail disp"
  68. }
  69.  
  70. volume master {
  71. format = "β™ͺ: %volume"
  72. device = "default"
  73. mixer = "Master"
  74. mixer_idx = 0
  75. }
  76.  
  77. cpu_temperature 0 {
  78. format = "Temp: %degrees Β°C"
  79. path = "/sys/devices/platform/coretemp.0/temp2_input"
  80. }
Advertisement
Add Comment
Please, Sign In to add comment