Advertisement
Guest User

Untitled

a guest
May 19th, 2014
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. #!/usr/bin/conky -c
  2. # set to yes if you want Conky to be forked in the background
  3. background no
  4.  
  5. # X font when Xft is disabled, you can pick one with program xfontsel
  6. #font 5x7
  7. #font 6x10
  8. #font 7x13
  9. #font 8x13
  10. #font 9x15
  11. #font *mintsmild.se*
  12. #font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
  13.  
  14. # Use Xft?
  15. use_xft yes
  16.  
  17. # Xft font when Xft is enabled
  18. xftfont Bitstream Vera Sans Mono:size=10
  19. #xftfont Terminus:size=8
  20. #xftfont Sans-Serif:size=9:pixelsize=11
  21.  
  22. # Text alpha when using Xft
  23. xftalpha 0.5
  24.  
  25. # Print everything to console?
  26. # out_to_console no
  27.  
  28. # mail spool
  29. mail_spool $MAIL
  30.  
  31. # Update interval in seconds
  32. update_interval 1.0
  33.  
  34. # This is the number of times Conky will update before quitting.
  35. # Set to zero to run forever.
  36. total_run_times 0
  37.  
  38. # Create own window instead of using desktop (required in nautilus)
  39. own_window yes
  40. own_window_type normal
  41. own_window_transparent yes
  42. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  43. own_window_title conkycalendar
  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 10 5
  50. maximum_width 190
  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. draw_graph_borders yes
  61.  
  62. # Stippled borders?
  63. stippled_borders 8
  64.  
  65. # border margins
  66. border_margin 4
  67.  
  68. # border width
  69. border_width 1
  70.  
  71. # Default colors and also border colors
  72. default_color ffd700
  73. default_shade_color black
  74. default_outline_color white
  75.  
  76. # Text alignment, other possible values are commented
  77. #alignment top_left
  78. alignment top_right
  79. #alignment bottom_left
  80. #alignment bottom_right
  81.  
  82. # Gap between borders of screen and text
  83. # same thing as passing -x at command line
  84. gap_x 5
  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. # number of cpu samples to average
  94. # set to 1 to disable averaging
  95. cpu_avg_samples 2
  96.  
  97. # Force UTF8? note that UTF8 support required XFT
  98. override_utf8_locale yes
  99.  
  100. # Add spaces to keep things from moving about? This only affects certain objects.
  101. use_spacer none
  102. #Note: doesn't work in conky 1.2 =(
  103.  
  104. text_buffer_size 256
  105.  
  106. TEXT
  107. ${color white}${font LCDMono:size=30}${time %H:%M}$font${voffset -10}${font LCDMono:size=16}${time :%S}$font
  108. ${voffset 7}${color gold}${execi 60 ~/configuracion/calendario.sh mes}
  109. ${color dddddd}${execi 60 ~/configuracion/calendario.sh semana}
  110. ${color 888888}${execi 60 ~/configuracion/calendario.sh pasado}${color red}${execi 60 ~/configuracion/calendario.sh hoy}${color 888888}${execi 60 ~/configuracion/calendario.sh futuro}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement