Advertisement
sxiii

Conky Config For Lenovo S9 Netbook

Apr 24th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.74 KB | None | 0 0
  1. ################################################
  2. # Conky Config For Lenovo S9 Netbook           #
  3. # Screen resolution: 1024 x 600 or around that #
  4. # Author: Security XIII [at gmail dot com]     #
  5. # 24.04.2014                                   #
  6. ################################################
  7. ######################
  8. # - Conky settings - #
  9. ######################
  10. update_interval 1
  11. total_run_times 0
  12. net_avg_samples 1
  13. cpu_avg_samples 1
  14.  
  15. imlib_cache_size 0
  16. double_buffer yes
  17. no_buffers yes
  18.  
  19. #####################
  20. # - Text settings - #
  21. #####################
  22. use_xft yes
  23. xftfont Dinreg:size=180
  24. override_utf8_locale yes
  25. text_buffer_size 2048
  26. xftalpha 0.9
  27.  
  28. #############################
  29. # - Window specifications - #
  30. #############################
  31. own_window_class Conky
  32. own_window yes
  33. own_window_type conky
  34. own_window_transparent yes
  35. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  36. #own_window_argb_visual yes
  37. #own_window_argb_value 100
  38.  
  39. alignment tl
  40. gap_x 720
  41. gap_y 10
  42. minimum_size 300 600
  43. default_bar_size 60 8
  44.  
  45. #########################
  46. # - Graphics settings - #
  47. #########################
  48. draw_shades no
  49.  
  50. default_color BDB5A1
  51. default_shade_color 1d1d1d
  52. color0 ffffff
  53. color1 ffffff
  54. color2 D6713C
  55.  
  56. TEXT
  57.  
  58. ${color}${font}${voffset -350}${time %H}
  59. ${color2}${voffset -170}${time %M}${color}
  60. ${color2}${voffset -300}${offset 250}${font Dinreg:size=30}${time %S}
  61. ${voffset 20}${font Droid Sans:size=16}${time %A} ${time %B} ${time %d.%m.%y}
  62. ${font Ubuntu:style=Bold:size=9}
  63. System:
  64. CPU0: ${color1}${cpu cpu1}% ${color2}${goto 150}CPU1: ${color1}${cpu cpu2}% ${color2}
  65. CPU Temp: ${color1} ${execi 30 sensors | grep 'Core 0' | cut -c16-17}°C ${color2}${goto 150} ACPI Temp: ${color1} ${execi 30 sensors | grep 'temp1' | cut -c16-17}°C ${color2}
  66. RAM: ${color1}${memperc}% ${color2} Free: ${color1} ${memeasyfree}${color2} Used: ${color1}${mem}${color2}
  67.  
  68. Network:${if_up wlan1}
  69. Current up: ${color1}${upspeed wlan1}${color2} ${goto 150}Total up: ${color1}${totalup wlan1}${color2}
  70. Current down: ${color1}${downspeed wlan1}${color2} ${goto 150}Total down: ${color1}${totaldown wlan1}${color2}
  71. Local IP: ${color1}${addr wlan1}${color2}${goto 150}Public IP: ${color1}${execi 10800 curl ifconfig.me/ip}${color2}
  72. ${endif}
  73. # |--ETH0
  74. ${if_existing /sys/devices/pci0000\:00/0000\:00\:1c.0/0000\:02\:00.0/net/eth0/operstate up}
  75. Current up: ${color1}${upspeed eth0}${color2}${upspeedgraph eth0 8,60 92B6F1 CCDFFF}
  76. Total up: ${color1}${totalup eth0}${color2}
  77. Current down: ${color1}${downspeed eth0}${color2}${downspeedgraph eth0 8,60 92B6F1 CCDFFF}${color}
  78. Total down: ${color1}${totaldown eth0}${color2}
  79. Local IP: ${color1}${addr eth0}${color2}${goto 150}Public IP: ${color1}${execi 10800 curl ifconfig.me/ip}${color2}
  80. ${endif}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement