Advertisement
discrust

i3status.conf [NEW] 🔥

May 5th, 2020 (edited)
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. # i3status configuration file.
  2. # i3status configuration file
  3. # see "man i3status" for documentation.
  4.  
  5. # It is important that this file is edited as UTF-8.
  6. # The following line should contain a sharp s:
  7. # ß
  8. # If the above line is not correctly displayed, fix your editor first!
  9.  
  10. general {
  11. colors = true
  12. interval = 1
  13. output_format = i3bar
  14. color_good = '#76a5d7'
  15. color_degraded = '#76a5d7'
  16. color_bad = '#76a5d7'
  17. }
  18.  
  19.  
  20.  
  21. order += "wireless wlan0"
  22. order += "path_exists VPN"
  23. order += "cpu_usage 0"
  24. order += "disk /"
  25. order += "battery 0"
  26. order += "volume master"
  27. order += "tztime local"
  28.  
  29. cpu_usage {
  30. format = " CPU %usage"
  31. }
  32.  
  33. cpu_temperature 0 {
  34. format = "T: %degrees °C"
  35. path = "/sys/devices/platform/coretemp.0/temp1_input"
  36. }
  37.  
  38. disk "/" {
  39. format = "⛁ /disk %free"
  40. }
  41.  
  42. volume master {
  43. format = "♪ %volume"
  44. device = "default"
  45. mixer = "Master"
  46. mixer_idx = 0
  47. }
  48.  
  49. battery 0 {
  50. threshold_type = "time"
  51. last_full_capacity = true
  52. low_threshold = "15"
  53. format = "☰ %percentage"
  54. }
  55.  
  56. tztime local {
  57. format = "  %d %b - %A  %H:%M:%S ::"
  58. }
  59.  
  60. cpu_temperature 0 {
  61. format = "T: %degrees °C"
  62. path = "/sys/devices/platform/coretemp.0/temp1_input"
  63. }
  64.  
  65. run_watch DHCP {
  66. pidfile = "/var/run/dhclient*.pid"
  67. }
  68.  
  69. run_watch VPN {
  70. pidfile = "/var/run/vpnc/pid"
  71. }
  72.  
  73. wireless wlan0 {
  74. format_up = " %quality | %bitrate | %essid"
  75. format_down = "W: down"
  76. }
  77.  
  78. ethernet eth0 {
  79. format_up = "E: %ip (%speed)"
  80. format_down = "E: down"
  81. }
  82.  
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement