There is an updated pull request by dkwo against master on the void-packages repository https://github.com/dkwo/void-packages sandbar https://github.com/void-linux/void-packages/pull/44997 New package: sandbar-0.1 - I tested the changes in this PR: yes, been using it for several weeks ``` #!/bin/bash FIFO="$XDG_RUNTIME_DIR/sandbar-0" [ -e "$FIFO" ] && rm -f "$FIFO" mkfifo "$FIFO" while cat "$FIFO"; do :; done | sandbar -font Terminus:size=32 while true do echo "all status $(print_bat) $(print_date)" > $XDG_RUNTIME_DIR/sandbar-0 sleep 1 done ``` - This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES** - I built this PR locally for my native architecture, x86_64 A patch file from https://github.com/void-linux/void-packages/pull/44997.patch is attached