Advertisement
Guest User

Untitled

a guest
May 26th, 2018
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. conky.config = {
  2. alignment = 'top_right',
  3. background = false,
  4. border_width = 1,
  5. color1 = '#00BCD4',
  6. cpu_avg_samples = 2,
  7. default_color = '#D1E7D1',
  8. default_outline_color = 'white',
  9. default_shade_color = 'white',
  10. double_buffer = true,
  11. draw_borders = false,
  12. draw_graph_borders = true,
  13. draw_outline = false,
  14. draw_shades = false,
  15. --gap_x 20
  16. --gap_y 20
  17. border_outer_margin = 20,
  18. max_port_monitor_connections = 64,
  19. maximum_width = 300,
  20. minimum_width = '300',
  21. -- max_specials 512
  22. max_user_text = 16384,
  23. minimum_width = 330, minimum_height = 670,
  24. net_avg_samples = 2,
  25. no_buffers = true,
  26. out_to_console = false,
  27. -- wm_class_name Conky
  28. stippled_borders = 2,
  29. -- wn_window yes
  30. --settings to define how to draw the window. compiz needs these settings, adjust for your WM
  31. own_window = true,
  32. own_window_class = 'Conky',
  33. own_window_type = 'desktop',
  34. --own_window_class conky-semi
  35. own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  36. own_window_transparent = false,
  37. own_window_argb_value = 100,
  38. own_window_colour = 'black',
  39. own_window_argb_visual = true,
  40. --own_window_argb_value 50
  41. update_interval = 1,
  42. uppercase = false,
  43. use_xft = true,
  44. xftalpha = 0.9,
  45. font = 'Inconsolata:size=12',
  46.  
  47. };
  48.  
  49. conky.text = [[
  50. ${color1}$nodename ${alignr}
  51. ${color1}Uptime:${color} $uptime
  52. $hr
  53. ${color1}RAM : ${color}$memperc%
  54. ${color}${cpugraph 60,140 07CC0D FF0000 -t}${goto 170}${color}${memgraph 60,140 07CC0D FF0000 -t}
  55. ${color1}CPU 1 : ${color}${cpu cpu1}% ${goto 140}${color1}${cpubar cpu1 12,125}
  56. ${color1}CPU 2 : ${color}${cpu cpu2}% ${goto 140}${color1}${cpubar cpu2 12,125}
  57. ${color1}CPU 3 : ${color}${cpu cpu3}% ${goto 140}${color1}${cpubar cpu3 12,125}
  58. ${color1}CPU 4 : ${color}${cpu cpu4}% ${goto 140}${color1}${cpubar cpu4 12,125}${color}
  59. $hr
  60. ${color1}Top Processes:
  61. ${color1}Name CPU MEM
  62. ${color}${top name 1} ${top cpu 1} ${top mem 1}
  63. ${color}${top name 2} ${top cpu 2} ${top mem 2}
  64. ${color}${top name 3} ${top cpu 3} ${top mem 3}
  65. # --- Get Spotify Cover ---
  66. ${if_running spotify}
  67. $hr
  68. ${exec ~/.conky/conky-spotify/scripts/cover.sh}
  69. # --- Show wallpaper and cover ---
  70. ${image ~/.conky/conky-spotify/current/current.jpg -p 68,380 -s 164x164 -n}
  71. # --- Show now playing information ---
  72. ${voffset -35}
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81. ${goto 30}${color1}Title:${color}
  82. ${exec ~/.conky/conky-spotify/scripts/title.sh}
  83. ${goto 30}${color1}Artist:${color}
  84. ${exec ~/.conky/conky-spotify/scripts/artist.sh}
  85. ${goto 30}${color1}Album:${color}
  86. ${font Inconsolata:size=12}${exec ~/.conky/conky-spotify/scripts/album.sh}
  87. ${endif}
  88. ]];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement