Advertisement
Guest User

Untitled

a guest
Jan 10th, 2014
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. out_to_x no
  2. own_window no
  3. out_to_console yes
  4. background no
  5. max_text_width 0
  6.  
  7. # Update interval in seconds
  8. update_interval 2.0
  9.  
  10. # This is the number of times Conky will update before quitting.
  11. # Set to zero to run forever.
  12. total_run_times 0
  13.  
  14. # Shortens units to a single character (kiB->k, GiB->G, etc.). Default is off.
  15. short_units yes
  16.  
  17. # How strict should if_up be when testing an interface for being up?
  18. # The value is one of up, link or address, to check for the interface
  19. # being solely up, being up and having link or being up, having link
  20. # and an assigned IP address.
  21. if_up_strictness address
  22.  
  23. # Add spaces to keep things from moving about? This only affects certain objects.
  24. # use_spacer should have an argument of left, right, or none
  25. use_spacer left
  26.  
  27. # Force UTF8? note that UTF8 support required XFT
  28. override_utf8_locale yes
  29.  
  30. # number of cpu samples to average
  31. # set to 1 to disable averaging
  32. cpu_avg_samples 2
  33.  
  34. # Stuff after 'TEXT' will be formatted on screen
  35. TEXT
  36.  
  37. # JSON for i3bar
  38. [ {"full_text":"Jams:","color":"\#9A9A9A","separator":false},\
  39. {"full_text":"${audacious_title 25} ","color":"\#D78A0C"},\
  40. #Shows uploadspeed
  41. {"full_text": " ▲ ","color":"\#9A9A9A","separator":false},\
  42. {"full_text": "${upspeed wlp3s0} ", "color":"\#D78A0C"},
  43. #Shows downloadspeed
  44. {"full_text": " ▼ ","color":"\#9A9A9A","separator":false},\
  45. {"full_text": "${downspeed wlp3s0} ", "color":"\#D78A0C"},
  46. {"full_text": " Home ","color":"\#9A9A9A","separator":false},\
  47. {"full_text": "${fs_free /} " , "color" : "\#D78A0C" },
  48. {"full_text": " Data ","color":"\#9A9A9A","separator":false},\
  49. {"full_text": "${fs_free /data} " , "color" : "\#D78A0C" },
  50. #Shows current memory usage with a bar
  51. {"full_text": " Ram ","color":"\#9A9A9A","separator":false},\
  52. {"full_text": "$mem", "color":"\#D78A0C"},
  53. #Shows current CPU usage with a bar
  54. {"full_text": " Cpu ","color":"\#9A9A9A","separator":false},\
  55. {"full_text": "${cpu}% @ ${platform coretemp.0 temp 2}°C ", "color":"\#D78A0C"},
  56. {"full_text": " ${time %a}, ${time %d %b %Y} ", "color":"\#9A9A9A"},
  57. {"full_text": " ${time %H}:${time %M}", "color":"\#D78A0C"},
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement