This is a simple dzen script to be used with remind to show the reminders of the next four weeks, with today's reminders highlighted. It only shows ten lines, but you can scroll through it with your mouse. Right clicking on the script exits it.
The script is based on Robert Manea's calendar.
#!/bin/bash # # Show your reminders for the next 4 weeks # # based on (c) 2007, by Robert Manea # http://dzen.geekmode.org/dwiki/doku.php?id=dzen:calendar # # Created by urukrama (http://urukrama.wordpress.com), 07-2008 # TODAY=$(expr `date +'%d'`) MONTH=$(expr `date +'%m'`) YEAR=$(expr `date +'%Y'`) ( echo '^bg(#000000)^fg(#B23308)'`date +'%A %d %B %Y %n'`; echo & remind -s+4 \ | sed -re "s/^(.*[A-Za-z][A-Za-z]*.*)/^fg(#F2EDD7)^bg(#000000)\1/;s/($YEAR)\/($MONTH)\/($TODAY)($|[ ])/^bg(#000000)^fg(#B23308)$YEAR\/$MONTH\/$TODAY /" \ sleep 30 ) \ | dzen2 -fg '#F2EDD7' -bg '#000000' -fn '-artwiz-nu-*-*-*-*-*-*-*-*-*-*-*-*' -x 690 -y 18 -w 330 -l 10 -ta c -tw 330 -e 'button4=scrollup:1;button5=scrolldown:1;button3=exit;onstart=uncollapse,scrollhome;'-