Advertisement
Guest User

conkyrc for powerpc

a guest
Dec 4th, 2012
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. # A very simple horizontal conky with date, time, cpu, ram, upload and download speeds, and a battery monitor for powerpc. Made for a 1024x768 screen.
  2.  
  3. # set to yes if you want Conky to be forked in the background
  4. background yes
  5.  
  6. # X font when Xft is disabled, you can pick one with program xfontsel
  7. #font 5x7
  8. #font 6x10
  9. #font 7x13
  10. #font 8x13
  11. #font 9x15
  12. #font *mintsmild.se*
  13. #font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
  14.  
  15. # Use Xft?
  16. use_xft yes
  17.  
  18. # Set conky on the bottom of all other applications
  19. own_window_hints below
  20.  
  21. # Xft font when Xft is enabled
  22. xftfont Sans:size=8
  23.  
  24. # Text alpha when using Xft
  25. xftalpha 1
  26.  
  27. # Update interval in seconds
  28. update_interval 3
  29.  
  30. # This is the number of times Conky will update before quitting.
  31. # Set to zero to run forever.
  32. total_run_times 0
  33.  
  34. # Create own window instead of using desktop (required in nautilus)
  35. own_window yes
  36. own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky
  37. own_window_type desktop
  38.  
  39. # Use pseudo transparency with own_window?
  40. own_window_transparent yes
  41.  
  42. # If own_window_transparent is set to no, you can set the background colour here
  43. #own_window_colour hotpink
  44.  
  45. # Use double buffering (reduces flicker, may not work for everyone)
  46. double_buffer yes
  47.  
  48. # Minimum size of text area
  49. minimum_size 280 5
  50.  
  51. # Draw shades?
  52. draw_shades yes
  53.  
  54. # Draw outlines?
  55. draw_outline no
  56.  
  57. # Draw borders around text
  58. draw_borders no
  59.  
  60. # Stippled borders?
  61. #stippled_borders 8
  62.  
  63. # border margins
  64. #border_margin 5
  65.  
  66. # border width
  67. #border_width 10
  68.  
  69. # Default colors and also border colors
  70. default_color white
  71. default_shade_color black
  72. #default_outline_color black
  73.  
  74. # Text alignment, other possible values are commented
  75. #alignment top_left
  76. #alignment top_right
  77. alignment bottom_left
  78. #alignment bottom_right
  79. #alignment none
  80.  
  81. # Gap between borders of screen and text
  82. # same thing as passing -x at command line
  83. gap_x 231
  84. gap_y 0
  85.  
  86. # Subtract file system buffers from used memory?
  87. no_buffers yes
  88.  
  89. # set to yes if you want all text to be in uppercase
  90. uppercase no
  91.  
  92. # Force UTF8? note that UTF8 support required XFT
  93. override_utf8_locale no
  94.  
  95. # Add spaces to keep things from moving about? This only affects certain objects.
  96. use_spacer yes
  97.  
  98. # variable is given either in format $variable or in ${variable}. Latter
  99. # allows characters right after the variable and must be used in network
  100. # stuff because of an argument
  101.  
  102. # stuff after 'TEXT' will be formatted on screen
  103.  
  104. # The ${goto 215} variable added to keep things from jumping around when the digits of the cpu meter change. Also I added a couple of spaces at the very end to prevent the percentage sign from being cut off.
  105.  
  106. TEXT
  107. ${time %a %b %d %I:%M%P} ${color white}CPU:${color white} $cpu% ${color white}${goto 215}RAM:${color white} $memperc% ${color white}Up: ${upspeedf eth0}k/s ${color white}Down: ${downspeedf eth0}k/s ${color white}Bat: ${pb_battery percent}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement