emkay443

config

Jun 5th, 2016
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 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 += "wireless _first_"
  15. order += "ethernet wwp0s29u1u4"
  16. order += "ethernet _first_"
  17. order += "ethernet tun0"
  18. order += "disk /"
  19. order += "disk /tmp"
  20. order += "disk /home"
  21. order += "disk /media/Daten"
  22. order += "cpu_temperature 0"
  23. order += "battery 0"
  24. order += "tztime local"
  25.  
  26. wireless _first_ {
  27. format_up = "📶 %quality %essid %ip"
  28. format_down = "📶 down"
  29. on_click 1 = "exec nm-connection-editor"
  30. on_click 3 = "exec nm-connection-editor"
  31. }
  32.  
  33. ethernet _first_ {
  34. format_up = "🔌 %ip"
  35. format_down = "🔌 down"
  36. on_click 1 = "exec nm-connection-editor"
  37. on_click 3 = "exec nm-connection-editor"
  38. }
  39.  
  40. ethernet wwp0s29u1u4 {
  41. format_up = "📱 up"
  42. format_down = "📱 down"
  43. on_click 1 = "exec nm c up id O2"
  44. on_click 3 = "exec nm-connection-editor"
  45. }
  46.  
  47. ethernet tun0 {
  48. format_up = "🔒 yes"
  49. format_down = "🔒 no"
  50. on_click 1 = "exec nmcli c up id \"VPNTunnel CH\""
  51. on_click 3 = "exec nmcli c down id \"VPNTunnel CH\""
  52. }
  53.  
  54. battery 0 {
  55. status_bat = "🔋"
  56. status_chr = "⏳"
  57. status_full = "♥"
  58. low_threshold = "10"
  59. threshold_type = "percentage"
  60. last_full_capacity = true
  61. format = "%status %percentage %remaining"
  62. on_click 1 = "exec xfce4-power-manager-settings"
  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. tztime local {
  74. format = "%a %Y-%m-%d %H:%M"
  75. #format = "<span foreground='#ffffff'>time:</span> %time"
  76. #format_time = "%H:%M %Z"
  77. }
  78.  
  79. load {
  80. format = "%1min"
  81. }
  82.  
  83. disk "/" {
  84. format = "R %avail"
  85. }
  86.  
  87. disk "/tmp" {
  88. format = "T %avail"
  89. }
  90.  
  91. disk "/media/Daten" {
  92. format = "D %avail"
  93. }
  94.  
  95. disk "/home" {
  96. format = "H %avail"
  97. }
  98.  
  99. cpu_temperature 0 {
  100. format = "🌡 %degrees °C"
  101. path = "/sys/devices/platform/thinkpad_hwmon/temp1_input"
  102. on_click 1 = "exec xfce4-power-manager-settings"
  103. }
Advertisement
Add Comment
Please, Sign In to add comment