I really enjoy squareword.
It doesn’t sound like it’s limited to libera.chat.
Thanks to the standard, open protocols that IRC is built on, chat.sr.ht users are able to participate in the established community of IRC networks like Libera Chat.
EDIT: They do, however, appear to recommend it.
The recommended network for SourceHut users is Libera Chat: https://libera.chat
Seeing your up
alias reminded me of a bash function I setup a while ago also called up
. I use it to simulate doing cd ..
n number of times. e.g. up 5
would go up 5 directory levels.
up ()
{
local levels;
local i;
[[ -z "$1" ]] && levels=1 || levels="$1";
for ((i=0; i<levels; i++))
do
cd ../;
done
}
It’s probably the smallest, yet most convenient thing I’ve setup on my machines. Especially so if you work in languages with lots of nested subdirectories (like Java).
While certainly not recommended, you could always make a cron job that runs pacman --noconfirm -Syu
nightly. Perhaps you could query the Arch news RSS feed to see if something is new, and notify you for a manual upgrade, but still not a recommended pattern.
Forkyz* it seems. Spent a minute trying to find this. I’ve been trying to find a good crossword app, thanks!