Yesterday I was working on several things, but needed to interrupt my stuff. So
I came up with this little piece of code I put in my .xinitrc. It checks
if the file remindme.txt exists and than checks, if it has any content. To
display my notes I use xmessage. The content of remindme.txt is plain
text.
if [[ -e remindme.txt ]]; then
test `wc -l remindme.txt | cut -d' ' -f1` -gt 0 && \
xmessage -geometry 320x400+1600+17 -file remindme.txt &
fi
When I now login and my window manager starts, it also displays my notes.
Short and quick!
Update #1: Forgot to enable comments…
Update #2: Made a screenshot earlier, but forgot to upload it…