安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题








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.