Suckless presentations

June 9, 2025

I'm a big fan of suckless tools. My laptop has been running dwm for years now. One of their tool has fascinated me ever since I discovered it: sent.

Its purpose is to create presentations. Being a suckless tool, it only needs a plain text file with each paragraph corresponding to a slide. Pictures can be displayed on a slide, but not with text on the same slide. You then launch sent on the file and the presentation starts in a plain X11 window.

It is diabolically efficient, and I like that. No need for a bloated WYSIWYG tool or elaborate markup language. Just write what you want to present, and it's done. With the file being plain text, you can even open it with any viewer or editor and just read it that way.

Some may find that the resulting presentation is a little too bland for their taste. In my opinion, that's a feature. I think many slides are way too bloated in the presentations I see. Having a few simple sentences or just one picture per slide is enough. It lets the viewer quickly read it and then listen to what is being said about it. The slide should support the talk, and not the opposite.

To test drive sent, I've created a simple "Maven primer" presentation. Don't take it too seriously, I've not checked everything I've written. You can find the presentation source file here. The sent home page is quite clear that exporting the presentation to other formats is not supported, but suggests automating a PNG export of each slide. That's exactly what I've done with a quick and dirty bash script:

#!/bin/bash

echo "Please focus sent window"

for i in {3..1}
do
    echo "$i..."
    sleep 1
done

xdotool getactivewindow windowsize $1 $2

for i in {01..19}
do
    import -screen -window 'sent' $i.png
    xdotool getactivewindow key n
done

Just launch it with your desired output resolution and then you have 3 seconds to focus the sent presentation to export:

$ ./sent-export.sh 800 600

01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19

< back to homepage