Advertisement
hundone

Base16 Bright

Nov 14th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 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. update_interval 2.0
  7.  
  8. # This is the number of times Conky will update before quitting.
  9. # Set to zero to run forever.
  10. total_run_times 0
  11.  
  12. # Shortens units to a single character (kiB->k, GiB->G, etc.). Default is off.
  13. short_units yes
  14.  
  15. # Add spaces to keep things from moving about? This only affects certain objects.
  16. # use_spacer should have an argument of left, right, or none
  17. use_spacer left
  18.  
  19. # Force UTF8? note that UTF8 support required XFT
  20. override_utf8_locale no
  21.  
  22. # number of cpu samples to average
  23. # set to 1 to disable averaging
  24. cpu_avg_samples 2
  25.  
  26. # Stuff after 'TEXT' will be formatted on screen
  27. TEXT
  28.  
  29. [\
  30. #Spotify
  31. { "full_text" : "${eval Now Playing:}", "color" : "\#A1C659", "separator" : false, "separator_block_width" : 3 }, \
  32. { "full_text" : "${exec sh "$HOME/Scripts/spotify-now-playing.sh"}", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  33. { "full_text" : "${eval |}", "color" : "\#073642", "separator" : false, "separator_block_width" : 3 }, \
  34.  
  35. #CPU
  36. { "full_text" : "${eval CPU:}", "color" : "\#DA4546", "separator" : false, "separator_block_width" : 3 }, \
  37. { "full_text" : "${cpu}%", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  38. { "full_text" : "${eval |}", "color" : "\#073642", "separator" : false, "separator_block_width" : 3 }, \
  39.  
  40. #RAM
  41. { "full_text" : "${eval RAM:}", "color" : "\#DA4546", "separator" : false, "separator_block_width" : 3 }, \
  42. { "full_text" : "${memperc}%", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  43. { "full_text" : "${eval |}", "color" : "\#073642", "separator" : false, "separator_block_width" : 3 }, \
  44.  
  45. #Load
  46. { "full_text" : "${eval Load:}", "color" : "\#6FB3D2", "separator" : false, "separator_block_width" : 3 }, \
  47. { "full_text" : "${loadavg 5}", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  48. { "full_text" : "|", "color" : "\#073642", "separator" : false, "separator_block_width" : 3 }, \
  49.  
  50. #FS: Root
  51. { "full_text" : "${eval Root:}", "color" : "\#D381C3", "separator" : false, "separator_block_width" : 3 }, \
  52. { "full_text" : "${fs_free /}", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  53. { "full_text" : "|", "color" : "\#073642", "separator" : false, "separator_block_width" : 3 }, \
  54.  
  55. #FS: Home
  56. { "full_text" : "${eval Home:}", "color" : "\#D381C3", "separator" : false, "separator_block_width" : 3 }, \
  57. { "full_text" : "${fs_free /home}", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  58. { "full_text" : "|", "color" : "\#073642", "separator" : false, "separator_block_width" : 3 }, \
  59.  
  60. #FS: HDD0
  61. { "full_text" : "${eval HDD0:}", "color" : "\#D381C3", "separator" : false, "separator_block_width" : 3 }, \
  62. { "full_text" : "${fs_free /media/HDD0}", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  63. { "full_text" : "|", "color" : "\#073642", "separator" : false, "separator_block_width" : 3 }, \
  64.  
  65. #VOLUME
  66. { "full_text" : "${eval Vol:}", "color" : "\#FDA331", "separator" : false, "separator_block_width" : 3 }, \
  67. { "full_text" : "${exec amixer -M get Master | egrep -o "[0-9]+%" | sed -n '2 p'}", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  68.  
  69. #CLOCK
  70. { "full_text" : "|", "color" : "\#073642", "separator" : false, "separator_block_width" : 3 }, \
  71. { "full_text" : "${time %a %d %b, %H:%M}", "color" : "\#B0B0B0", "separator" : false, "separator_block_width" : 3 }, \
  72. \
  73. { "full_text" : "", "color" : "\#EEE8D5", "separator" : false, "separator_block_width" : 3 } \
  74. ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement