Advertisement
i_gnatenko_brain

~/.i3/i3status.conf

Nov 23rd, 2012
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 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 = 1
  12. output_format = "i3bar"
  13. }
  14.  
  15. order += "wireless wlan0"
  16. order += "ethernet eth0"
  17. order += "battery 1"
  18. order += "load"
  19. order += "volume master"
  20. order += "time"
  21.  
  22. wireless wlan0 {
  23. format_up = "W: (%quality at %essid) %ip"
  24. format_down = "W: down"
  25. }
  26.  
  27. ethernet eth0 {
  28. # if you use %speed, i3status requires root privileges
  29. format_up = "E: %ip"
  30. format_down = "E: down"
  31. }
  32.  
  33. battery 1 {
  34. format = "%status %percentage %remaining %consumption"
  35. last_full_capacity = true
  36. }
  37.  
  38. time {
  39. format = "%d.%m.%Y %H:%M:%S"
  40. }
  41.  
  42. load {
  43. format = "%1min"
  44. }
  45.  
  46. volume master {
  47. format = "♪: %volume"
  48. device = "default"
  49. mixer = "Master"
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement