Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.01 KB | None | 0 0
  1. # set to yes if you want Conky to be forked in the background
  2. background yes
  3.  
  4. own_window_colour black
  5.  
  6. # Use Xft?
  7. use_xft yes
  8.  
  9. # Xft font when Xft is enabled
  10. xftfont Aller Display:size=7.3
  11.  
  12. # Text alpha when using Xft
  13. xftalpha 1.0
  14.  
  15. # Update interval in seconds
  16. update_interval 3
  17.  
  18. # This is the number of times Conky will update before quitting.
  19. # Set to zero to run forever.
  20. total_run_times 0
  21.  
  22. # Create own window instead of using desktop (required in nautilus)
  23. own_window no
  24.  
  25. # Use double buffering (reduces flicker, may not work for everyone)
  26. double_buffer yes
  27.  
  28. # Stippled borders?
  29. stippled_borders 0
  30.  
  31. # border width
  32. border_width 0
  33.  
  34. # Default colors and also border colors
  35. default_color white
  36.  
  37. # own window options
  38. own_window      yes
  39. own_window_transparent  no
  40. own_window_type     desktop
  41. own_window_hints    undecorated,below,sticky,skip_taskbar,skip_pager
  42.  
  43. # Text alignment, other possible values are commented
  44. #alignment top_left
  45. alignment top_right
  46. #alignment bottom_left
  47. #alignment bottom_right
  48.  
  49. # Subtract file system buffers from used memory?
  50. no_buffers yes
  51.  
  52. # set to yes if you want all text to be in uppercase
  53. uppercase none
  54.  
  55. # number of cpu samples to average
  56. # set to 1 to disable averaging
  57. cpu_avg_samples 2
  58.  
  59. # number of net samples to average
  60. # set to 1 to disable averaging
  61. net_avg_samples 2
  62.  
  63. # Force UTF8? note that UTF8 support required XFT
  64. override_utf8_locale no
  65.  
  66. # Add spaces to keep things from moving about?  This only affects certain objects.
  67.  
  68. gap_x 5
  69. gap_y 3
  70.  
  71. draw_shades no
  72. draw_outline no
  73. draw_borders no
  74. draw_graph_borders no
  75. default_shade_color ccc
  76.  
  77. minimum_size 1430 0
  78.  
  79. TEXT
  80. $font${offset 0}.${execi 30 whoami}//${execi 30 hostname} ${color #A6BF1B}$conky_build_arch${alignc}${color #ffffff}${offset 40} [ IP: ${color #A6BF1B}$addr ]${offset 5}${color #ffffff}[ RAM: ${color #A6BF1B}${membar 3,50} ${offset 5} $memperc% / $mem of $memmax ]${offset 5}${color #ffffff}[ Down: ${color #A6BF1B}${downspeed eth0} ]${offset 5}${color #ffffff}[ Up: ${color #A6BF1B}${upspeed eth0} ]${offset 5}${color #ffffff}[ GPU: ${color #A6BF1B}${execi 60 nvidia-settings -query GPUCoreTemp | perl -ne 'print $1 if /GPUCoreTemp.*?: (\d+)./;'}C ]${offset 5}${color #ffffff}[ CPU1: ${color #A6BF1B}${execi 6 /usr/bin/sensors | grep Core\ 0| paste -s | cut -c15-16,16-16}C ]${offset 5}${color #ffffff}[ CPU2: ${color #A6BF1B}${execi 6 /usr/bin/sensors | grep Core\ 1| paste -s | cut -c15-16,16-16}C ]${offset 5}${color #ffffff}[ CPU3: ${color #A6BF1B}${execi 6 /usr/bin/sensors | grep Core\ 2| paste -s | cut -c15-16,16-16}C ]${offset 5}${color #ffffff}[ CPU4: ${color #A6BF1B}${execi 6 /usr/bin/sensors | grep Core\ 3| paste -s | cut -c15-16,16-16}C ]${offset 5}${color #ffffff}[ Home: ${color #A6BF1B}${fs_bar 3,50 /home/jari} ]${offset 5}${color #ffffff}[ Anime: ${color #A6BF1B}${fs_bar 3,50 /media/Anime} ]${offset 5}${color #ffffff}[ Storage ${color #A6BF1B}${fs_bar 3,50 /media/Storage} ] ${alignr}${color #ffffff}Project Arch Linux ${color #A6BF1B}Updates [ ${execi 35 pacman -Qu | wc -l} ]${offset 8}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement