Advertisement
ProzacR

i3status PC

May 29th, 2017
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 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. }
  13.  
  14. order += "cpu_usage"
  15. #order += "ipv6"
  16. order += "disk /"
  17. #order += "run_watch DHCP"
  18. #order += "run_watch VPN"
  19. #order += "wireless _first_"
  20. order += "ethernet _first_"
  21. #order += "battery 0"
  22. order += "load"
  23. order += "tztime local"
  24.  
  25. cpu_usage {
  26. format = " CPU: %usage "
  27. }
  28.  
  29. wireless _first_ {
  30. format_up = "W: (%quality at %essid) %ip"
  31. format_down = "W: down"
  32. }
  33.  
  34. ethernet _first_ {
  35. # if you use %speed, i3status requires root privileges
  36. format_up = "E: %ip (%speed)"
  37. format_down = "E: down"
  38. }
  39.  
  40. battery 0 {
  41. format = "%status %percentage %remaining"
  42. }
  43.  
  44. run_watch DHCP {
  45. pidfile = "/var/run/dhclient*.pid"
  46. }
  47.  
  48. run_watch VPN {
  49. pidfile = "/var/run/vpnc/pid"
  50. }
  51.  
  52. tztime local {
  53. format = "%Y-%m-%d %H:%M:%S"
  54. }
  55.  
  56. load {
  57. format = "%1min"
  58. }
  59.  
  60. disk "/" {
  61. format = "%avail"
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement