Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

i3status

For i3status compatible bars like i3bar, you can use a helper script. First, add this to your i3status config:

order += "read_file tomat"

read_file tomat {
    path = "/tmp/tomat-status"
    format = "%content"
}

Helper script:

#!/bin/bash
while true; do
    tomat status --output plain > /tmp/tomat-status
    sleep 1
done