Advertisement
Guest User

conkyrc powerpc

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