Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem








And that guide is exactly what I used to setup the original wallpaper which the current monstrosity grew out of. It was original just to test what's in that guide haha. That's why a lot of the logic is badly done in the code. It's a rewrite of a rewrite of a rewrite.
if it works, I would say just use it. I really do not have the energy to deal with my wallpapers. I hope to get around to the wish at some point tho, but as things are going it could still take months. Juggling to many things IRL atm that even minor changes like this feel huge.
If you right-click your wallpaper you can choose "open to explorer" to see the files on your device, there should be an index.html file you can open with a text editor.
You should see a block of code that looks like this, around line 1540,
for( var i = 0; i < files.length; i++)
{
this.playlist.addFile( files[ i ] );
}
I just added a check around that line in the middle to look for a text match, like this
for( var i = 0; i < files.length; i++)
{
var regex = files.match("string_to_exclude");
if(!regex)
{
this.playlist.addFile( files[ i ] );
}
}
Whatever you put between those quotes, it'll look for that in the filepath of every file it's trying to add to the playlist. If it's there it won't add it to the playlist. So for example if your wallpaper is looking in a folder "Pictures", and you want to exclude the subfolder "Vacation", you would put "Vacation" in the quotes and none of the pictures in that subfolder will be added to the playlist.