Spyke

Posts

ENreco Archive

With ENreco Chapter 3 coming to a close, I wanted to share a resource I find useful for keeping up with all the plotlines in the RP: https://enreco-archive.net/

The website has Chapter Recaps for the first two chapters on the side, as well as in-depth writeups of the plot for individual days, and members. Each member's recap has timestamped VOD links to events, and the overview has screenshots for everything it goes over.

I wasn't sure if anybody else here has seen it, but I hope someone else also finds this useful!

ENreco Archivehttps://enreco-archive.net/Open linkView original on lemmy.world
plan9·Plan9byccf

rio background patch

From my post on my website, https://w.ccf.sh/plan9/rioback


wallpapers in rio

it works. I originally planned on creating a new file, /dev/background, for this, but then I saw atamariya's modifications and decided to use /dev/screen instead. only thing about this approach is that originally I had planned that reading /dev/background would return the background that was set, but that seems rather pointless since you should have access to the image you set already. no code from atamariya was used as I couldn't find it anywhere, and some inspiration was taken from sigrid's rio patch. backgrounds in p9bit format (readable by readimage(2)) are supported, as well as solid colors starting with as 6-digit hex literals starting with '#'.

to use, write to /dev/screen:

# setting a bitmap wallpaper
; cp wallpaper.bit /dev/screen
# setting a png wallpaper
; png -9 wallpaper.png >/dev/screen
# setting a solid color wallpaper
; echo '#181818' >/dev/screen

to install:

; cd /sys/src/cmd/rio
; hget https://up.ccf.sh/rioback.patch | patch -p5
View original on lemmy.world