Downloads:
310
Downloads of v 25.5.2:
52
Last Update:
02 May 2025
Package Maintainer(s):
Software Author(s):
- Taiizor
Tags:
sucrose wallpaper engine desktop live lively windows fluent widgetSucrose Wallpaper Engine
- 1
- 2
- 3
25.5.2 | Updated: 02 May 2025
Downloads:
310
Downloads of v 25.5.2:
52
Maintainer(s):
Software Author(s):
- Taiizor
Sucrose Wallpaper Engine 25.5.2
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Taiizor. The inclusion of Taiizor trademark(s), if any, upon this webpage is solely to identify Taiizor goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Sucrose Wallpaper Engine, run the following command from the command line or from PowerShell:
To upgrade Sucrose Wallpaper Engine, run the following command from the command line or from PowerShell:
To uninstall Sucrose Wallpaper Engine, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download sucrose --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade sucrose -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade sucrose -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install sucrose
win_chocolatey:
name: sucrose
version: '25.5.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'sucrose' do
action :install
source 'INTERNAL REPO URL'
version '25.5.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller sucrose
{
Name = "sucrose"
Version = "25.5.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'sucrose':
ensure => '25.5.2',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 02 May 2025.
Sucrose is a versatile wallpaper engine that brings a wide range of interactive wallpapers to life on your desktop. With light and dark theme options, you can choose the appearance that suits your personal preferences. You can create your own wallpapers simply or in detail, and it supports multiple screens and all screen resolutions for a seamless experience across various display configurations.
Completely open-source and free, Sucrose doesn't require any payments for any features, granting users full access. You can create media-responsive wallpapers using the Sucrose Audio API and design wallpapers with system status indicators using the Sucrose System API. Additionally, you can use any website as a wallpaper using CefSharp and WebView.
Sucrose allows you to create your own custom wallpapers and share them with friends or the Sucrose Community. You can explore and download wallpapers offered by users directly from the Sucrose Store.
In terms of performance, it ensures smooth performance by optimizing CPU and GPU usage. It automatically pauses wallpapers when fullscreen applications/games are running to conserve resources, and it has a power-saving mode that pauses wallpapers when running on battery power, such as on laptops.
Sucrose is a powerful tool for personalizing and animating your desktop. It enables users to express their creativity and fully customize their desktop experiences.
Features
Take a moment, preview GIF clips may take some time to load.
Wallpaper Varieties
Wallpaper Type | Example | Interactive | Resolution | Performance |
---|---|---|---|---|
Gif | ![]() |
No | Variable | Fixed |
Url | ![]() |
Yes | Fixed | Variable |
Web | ![]() |
Yes | Fixed | Variable |
Video | ![]() |
No | Variable | Fixed |
YouTube | ![]() |
No | Fixed | Variable |
Application | ![]() |
Yes | Fixed | Variable |
More Features
- Light and Dark theme feature.
- Create your own wallpapers simply or in detail.
- Supports multiple screens and all screen resolutions.
- Customize various wallpaper engines and plugins freely.
- Completely open-source and free, no feature requires payment.
- Create media-responsive wallpapers using the Sucrose Audio API.
- Determine the fate of the wallpaper based on system performance.
- Create wallpapers that display system status using the Sucrose System API.
- You can use any website you want as a wallpaper with CefSharp and WebView.
- Automatically switch between different wallpapers at specified time intervals or randomly.
Create and Share Wallpapers
- Create your own custom wallpapers and share them with friends or the Sucrose community.
- Explore a store of user-submitted wallpapers and download them directly from the Sucrose store.
Performance
- Optimize CPU and GPU usage for smooth performance.
- Power-saving mode to pause wallpapers when running on battery (laptops).
- Auto-pause wallpapers when fullscreen applications/games run to conserve resources.
$ErrorActionPreference = 'Stop'
$packageArgs = @{
packageName = 'Sucrose Wallpaper Engine'
fileType = 'exe'
validExitCodes= @(0)
}
$key = Get-ItemProperty 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\Sucrose' -ErrorAction SilentlyContinue
if ($null -ne $key) {
$packageArgs['file'] = "$($key.UninstallString)"
#Start-Process -FilePath $uninstallString -Wait
Uninstall-ChocolateyPackage @packageArgs
}
else {
Write-Warning "$($packageArgs.packageName) is not installed or has already been uninstalled."
}
Log in or click on link to see number of positives.
- sucrose.25.5.2.nupkg (89bace663e47) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Sucrose Wallpaper Engine 25.5.2 | 52 | Friday, May 2, 2025 | Approved | |
Sucrose Wallpaper Engine 25.4.25 | 18 | Friday, April 25, 2025 | Approved | |
Sucrose Wallpaper Engine 25.4.7 | 30 | Monday, April 7, 2025 | Approved | |
Sucrose Wallpaper Engine 25.1.27 | 36 | Monday, January 27, 2025 | Approved | |
Sucrose Wallpaper Engine 24.12.2 | 28 | Tuesday, December 3, 2024 | Approved | |
Sucrose Wallpaper Engine 24.11.26 | 28 | Friday, November 29, 2024 | Approved | |
Sucrose Wallpaper Engine 24.11.2 | 118 | Saturday, November 2, 2024 | Approved |
What's changed in Sucrose v25.5.2.0
Enhancements:
- Some bugs have been fixed.
Updates:
- Updated CefSharp.Wpf.HwndHost library.
- Updated LibreHardwareMonitorLib library.
Store:
- More than 25 new wallpaper have been added.
Full Changelog: https://github.com/Taiizor/Sucrose/compare/v25.4.25.0...v25.5.2.0
-
- dotnetfx (≥ 4.8.0.20220524)
Ground Rules:
- This discussion is only about Sucrose Wallpaper Engine and the Sucrose Wallpaper Engine package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Sucrose Wallpaper Engine, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.