Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2015
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 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 = yes
  11. interval = 5
  12. color_good = "#2ECC71"
  13. color_bad = "#E74C3C"
  14. # color_degraded = " "
  15. }
  16.  
  17. order += "cpu_usage"
  18. # order += "load"
  19. order += "disk /"
  20. # order += "disk /home"
  21. order += "wireless _first_"
  22. order += "ethernet _first_"
  23. order += "battery 1"
  24. order += "tztime local"
  25. # order += "ipv6"
  26. # order += "run_watch DHCP"
  27. # order += "run_watch VPN"
  28.  
  29. cpu_usage {
  30. format = " cpu %usage "
  31. }
  32. load {
  33. format = " load %1min "
  34. # max_threshold = 0.3
  35. }
  36. disk "/" {
  37. # format = " hdd %avail "
  38. format = " ⛁ %avail "
  39. }
  40. disk "/home" {
  41. format = " /home %avail "
  42. }
  43. wireless _first_ {
  44. # format_up = "W: (%quality at %essid) %ip"
  45. format_up = "  %essid %quality "
  46. format_down = " no wlan "
  47. }
  48. ethernet _first_ {
  49. # if you use %speed, i3status requires root privileges
  50. format_up = " lan: %ip %speed "
  51. format_down = " no lan "
  52. }
  53. battery 1 {
  54. # format = "%status %percentage %remaining %emptytime"
  55. format = " %status %percentage"
  56. format_down = "No battery"
  57. last_full_capacity = true
  58. integer_battery_capacity = true
  59. # status_chr = ""
  60. status_chr = "⚡"
  61. status_bat = ""
  62. # status_bat = "bat"
  63. # status_bat = "☉"
  64. # status_full = ""
  65. status_full = "☻"
  66. low_threshold = 15
  67. threshold_type = time
  68. }
  69. tztime local {
  70. # format = "%Y-%m-%d %H:%M:%S"
  71. format = " %d.%m. %H:%M "
  72. }
  73.  
  74. # run_watch DHCP {
  75. # pidfile = "/var/run/dhclient*.pid"
  76. # }
  77. # run_watch VPN {
  78. # pidfile = "/var/run/vpnc/pid"
  79. # }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement