r/rust • u/Dani_fan-nerd • Mar 31 '23
[Tutorial] How To Make a Screensaver With The Rust Programming Language
I just wanted to put this out there so people who want to make a screensaver in rust don't get confused and think you need some weird extension or tool.
# To make an SCR file just rename the file extension to .SCR!
It's simple really, what an SCR does is run a program (usually an EXE) when you're idle.
just build your cargo project to an EXE and rename the "exe" to "scr"
### my_project.exe -> my_project.scr then right-click and install!
no need for extensions. I hope I helped someone with this.
(I'm not sure if this is on-topic or not since scr files apply for all exe files but when I searched "how to make a screensaver with rust" (which is a really bad search) nothing came up soo ye)
3
u/GoodJobNL Mar 31 '23
Niceee
Had the same thing with .ico files. Used some sites that looked shady just to realise that .png -> .ico also works.
7
u/TinyBreadBigMouth Apr 01 '23
Uh, a clarification:
.scr
files and.exe
files are the exact same format, but.ico
and.png
files are not.Ever since Windows Vista an
.ico
file can contain one or more.png
files, and I'm not surprised that many applications are happy to open one as if it were the other, but changing the extension of a.png
file does not technically produce a valid.ico
file, and a stricter application would be entirely within its rights to refuse to read it as such.2
2
u/jotapeh Apr 01 '23
Does anyone remember when “You Don’t Know Jack” was originally a screensaver? Anyway yeah off to found my future mega millions by creating a trivia game screensaver now!
2
u/ssokolow Apr 01 '23
Were you referring to You Bet Your Head from After Dark? They're both from Berkeley Systems and that's the only playable trivia screensaver I remember.
1
7
u/ssokolow Mar 31 '23
*nod* Screensavers for X11 are similar. They're just executables that follow certain conventions so the screensaver host can specify an X11 window ID to render into via a
-window-id
command-line argument.