Guest User

Conky calendar with today highlighted

a guest
Oct 14th, 2010
2,001
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. # Conky sample configuration
  2. #
  3. # the list of variables has been removed from this file in favour
  4. # of keeping the documentation more maintainable.
  5. # Check http://conky.sf.net for an up-to-date-list.
  6.  
  7. # set to yes if you want Conky to be forked in the background
  8. background no
  9.  
  10. # X font when Xft is disabled, you can pick one with program xfontsel
  11. #font 5x7
  12. #font 6x10
  13. #font 7x13
  14. #font 8x13
  15. #font 9x15
  16. #font *mintsmild.se*
  17. #font -*-*-*-*-*-*-34-*-*-*-*-*-*-*
  18.  
  19.  
  20. # Use Xft?
  21. use_xft yes
  22.  
  23. # Xft font when Xft is enabled
  24. xftfont DejaVu Sans Mono:size=9
  25. #xftfont Dungeon:size=7
  26.  
  27. # Text alpha when using Xft
  28. xftalpha 0.8
  29.  
  30.  
  31. # Update interval in seconds
  32. update_interval 2.5
  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.  
  41. # If own_window is yes, you may use type normal, desktop or override
  42. own_window_type desktop
  43.  
  44. # Use pseudo transparency with own_window?
  45. own_window_transparent yes
  46.  
  47. # If own_window is yes, these window manager hints may be used
  48. own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
  49.  
  50. # Use double buffering (reduces flicker, may not work for everyone)
  51. double_buffer yes
  52.  
  53. # Minimum size of text area
  54. minimum_size 1278 5
  55.  
  56. # Maximum width
  57. maximum_width 1278
  58.  
  59. # Draw shades?
  60. draw_shades yes
  61.  
  62. # Draw outlines?
  63. draw_outline no
  64.  
  65. # Draw borders around text
  66. draw_borders no
  67.  
  68. # Draw borders around graphs
  69. draw_graph_borders no
  70.  
  71. # Stippled borders?
  72. #stippled_borders 8
  73.  
  74. # border width
  75. border_width 1
  76.  
  77. # Default colors and also border colors
  78. default_color white
  79. default_shade_color black
  80. default_outline_color black
  81.  
  82. # Text alignment, other possible values are commented
  83. alignment middle_left
  84. #alignment top_right
  85. #alignment bottom_left
  86. #alignment bottom_right
  87. #alignment none
  88.  
  89. # Gap between borders of screen and text
  90. # same thing as passing -x at command line
  91. gap_x 1000
  92. gap_y 0
  93.  
  94. # Subtract file system buffers from used memory?
  95. no_buffers yes
  96.  
  97. # set to yes if you want all text to be in uppercase
  98. uppercase no
  99.  
  100. # number of cpu samples to average
  101. # set to 1 to disable averaging
  102. cpu_avg_samples 2
  103.  
  104. # number of net samples to average
  105. # set to 1 to disable averaging
  106. net_avg_samples 2
  107.  
  108. # Force UTF8? note that UTF8 support required XFT
  109. override_utf8_locale yes
  110.  
  111. # Add spaces to keep things from moving about? This only affects certain objects.
  112. use_spacer none
  113.  
  114. # variable is given either in format $variable or in ${variable}. Latter
  115. # allows characters right after the variable and must be used in network
  116. # stuff because of an argument
  117.  
  118. # stuff after 'TEXT' will be formatted on screen
  119. TEXT
  120.  
  121. ${color #888888}${execpi 600 cal -m | sed -e 's|'`date +%d`'|\$\{color #FFFFFF}'`date +%d`'\$\{color #888888}|'}
Advertisement
Add Comment
Please, Sign In to add comment