Advertisement
okubax

i3-conky

Jul 10th, 2013
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 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 no
  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.  
  39. [{ "full_text" : "Mail: ${execpi 60 python ~/bin/gmail.py} " , "color" :
  40. ${if_match ${execpi 60 python ~/bin/gmail.py}>1}"\#bf3f34"${else}"\#315858"${endif} },
  41.  
  42. { "full_text" : " WEATHER ${execi 300 ~/bin/weather_simple.sh "EUR|UK|UK241|LONDON"} " , "color" : "\#315858"},
  43.  
  44. { "full_text" : " UP ${uptime_short} " , "color" : "\#315858" },
  45.  
  46. { "full_text" : " CPU ${cpu}% " , "color" :
  47. ${if_match ${cpu}>10}"\#bf3f34"${else}"\#315858"${endif} },
  48.  
  49. { "full_text" : " ROOT ${fs_free /} Free " , "color" : "\#315858" },
  50.  
  51. { "full_text" : " HOME ${fs_free /home} Free " , "color" : "\#315858" },
  52.  
  53. { "full_text" : " TEMP ${acpitemp}C " , "color" :
  54. ${if_match ${acpitemp}>43}"\#bf3f34"${else}"\#315858"${endif} },
  55.  
  56. { "full_text" : " RAM ${memperc}% " , "color" :
  57. ${if_match ${memperc}>25}"\#bf3f34"${else}"\#315858"${endif} },
  58.  
  59. { "full_text" : "${time %H:%M} ${time %d %b %Y} " , "color" : "\#315858" }
  60.  
  61. # { "full_text" : " BATT:${battery_percent BAT0}% " , "color" :
  62. # ${if_match ${battery_percent BAT0}<30}"\#bf3f34"${else}"\#315858"${endif} },
  63.  
  64. # { "full_text" : " WLAN:${wireless_link_qual_perc wlo1}% " , "color" :
  65. # ${if_match ${wireless_link_qual_perc wlo1}<65}"\#bf3f34"${else}"\#315858"${endif} },
  66. ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement