вставь строку , поставь свои пути
${font DejaVu Sans Mono:size=12}${execpi 3600 ~/.conky/calendar2.sh}${color}${font}
скрипт ~/.conky/calendar2.sh
#!/bin/bash
date=$(date '+%F')
DAY=${date:8:2}
# m="-m" # uncomment this line for starting the week on Monday instead of Sunday.
cal=$(cal $m)
prev=$(cal $m $(date '+%-m %Y' --date="${date:0:7}-15 -1 month")|sed 's/ *$//;/^$/d'|tail -1)
next=$(cal $m $(date '+%-m %Y' --date="${date:0:7}-15 +1 month")|sed '/^ *&/d;1,2d;s/^ *//'|head -1)
if [ ${#next} == 19 ] ;then next=$'\n'"\${color9} $next"
else next="\${color4} $next"
fi
if [ ${#prev} == 20 ]; then prev="$prev"$'\n '
else prev="$prev "
fi
dates=$(remind -s .reminders|cut -d ' ' -f1|uniq|cut -d '/' -f3|sed "/$DAY/d")
current=$(echo "${cal:42}"|sed -e '/^ *$/d' -e 's/^/ /' -e 's/$/ /' -e 's/^ *1 / 1 /' )
for i in $dates; do
current=$(echo "$current"|sed -e /" ${i/#0/} "/s/" ${i/#0/} "/" "'${color green}'"${i/#0/}"'${color}'" "/)
done
current=$(echo "$current"|sed -e /" ${DAY/#0/} "/s/" ${DAY/#0/} "/" "'${color9}'"${DAY/#0/}"'${color}'" "/ -e 's/^ //' -e 's/ *$//')
echo -e "\${color7}${cal:0:15}\${color2}${cal:15:21}\${color4}$prev\${color}$current$next"
установи sudo apt-get install remind
создай .reminders в домашней папке
будет как тут
http://ubuntuforums.org/attachment.php?attachmentid=142013&thumb=1&d=1262357628 , только на русском языке