Set different wallpaper for each workspace by having the wallpaper switch on workspace change. Forked from the BlinkBP'project (https://github.com/BlinkBP/walkpaper) Unlike the previous extension is added a delay during transition. Is need for avoid flickering during switch using shortcuts :)
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
The timeout still hasn't been removed. You should do something like this: ```js let _changeWallpaperTimeout = null; function _changeWallpaper() { _changeWallpaperTimeout = GLib.timeout_add(GLib.PRIORITY_HIGH, 500, () => { _changeWallpaper_delay(); _changeWallpaperTimeout = null; return GLib.SOURCE_REMOVE; }); } function disable() { if (_changeWallpaperTimeout) { GLib.Source.remove(_changeWallpaperTimeout); _changeWallpaperTimeout = null; } // ... } ```
I'll try again