YASB GUI AmN
winget install --id=AmN.YASBGUI -e A graphical configuration manager for YASB Reborn.
winget install --id=AmN.YASBGUI -e A graphical configuration manager for YASB Reborn.
YASB GUI is a native configuration application for YASB Reborn (Yet Another Status Bar). Built with WinUI 3, it provides a modern interface for managing your status bar configuration without manually editing YAML files.
> Note: This application is currently in beta. Some features may be incomplete or subject to change. Please report any issues on the GitHub Issues page.
Why a separate repository?
Visual Configuration Editor
Widget Management
Styles Editor
Environment Variables
Application Settings
Safety Features
| Component | Requirement |
|---|---|
| Operating System | Windows 10 (Build 17763+) or Windows 11 |
| Runtime | Windows App SDK Runtime |
| WebView | Microsoft Edge WebView2 Runtime (included with Windows 10/11) |
Download the latest release from the Releases page.
widgets: list. Real example (Weather widget) with nested options and indentation kept:label: "{icon} {temp}"
label_alt: "{location}: Min {min_temp}, Max {max_temp}"
api_key: "YOUR_API_KEY"
show_alerts: true
tooltip: true
update_interval: 600
hide_decimal: true
units: metric
menu:
blur: true
round_corners: true
round_corners_type: normal
border_color: system
alignment: center
direction: down
offset_top: 6
offset_left: 0
icons:
sunnyDay: "\ue30d"
clearNight: "\ue32b"
cloudyDay: "\ue312"
cloudyNight: "\ue311"
rainyDay: "\ue318"
rainyNight: "\ue318"
snowyIcy: "\ue31a"
default: "\ue137"
callbacks:
on_left: toggle_menu
> Tips > > Copy only the options section from the docs and paste it into the Options editor; the widget type is already set by your selection. > > If indentation looks off, right-click in the editor and choose Fix indentation from the context menu.
The application reads and writes YASB configuration from:
~/.config/yasb/config.yaml~/.config/yasb/styles.cssTo use a custom location, set the YASB_CONFIG_HOME environment variable.
YASB GUI supports multiple languages. Translation files are located in app/core/locales/.
To add a new language:
en.json and rename it using the language code (e.g., fr.json for French)_language_name and _language_code at the top of the file{variable}) within the stringsgit clone https://github.com/amnweb/yasb-gui.git
cd yasb-gui
pip install -e .
python app/main.py
pip install .[build]
python app/scripts/build.py build
The executable will be created in the dist/ directory.
After building the executable, you can create an MSIX package:
python app/scripts/build_msix.py
The MSIX will be created in the msix/ directory.
Options:
--arch x64|aarch64 - Target architecture (default: x64)--output - Output directory for MSIXFor local testing without code signing, register the package in development mode:
# Register the package (runs from extracted layout, not the .msix file)
Add-AppxPackage -Path "msix/layout/AppxManifest.xml" -Register
# Launch the app
Start-Process "shell:AppsFolder\YASB.GUI_wbnnev551gwxy!App"
# Uninstall when done
Get-AppxPackage -Name "YASB.GUI" | Remove-AppxPackage
To test with a signed MSIX locally, create a self-signed certificate:
# Create a self-signed certificate (run once)
$cert = New-SelfSignedCertificate -Type Custom -Subject "CN=YourName" `
-KeyUsage DigitalSignature -FriendlyName "YASB GUI Dev" `
-CertStoreLocation "Cert:\CurrentUser\My" `
-TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.3")
# Export to PFX (set a password)
$pwd = ConvertTo-SecureString -String "YourPassword" -Force -AsPlainText
Export-PfxCertificate -Cert $cert -FilePath "dev-cert.pfx" -Password $pwd
# Trust the certificate (required to install signed packages)
Import-Certificate -FilePath (Export-Certificate -Cert $cert -FilePath "dev-cert.cer") `
-CertStoreLocation "Cert:\LocalMachine\TrustedPeople"
# Sign the MSIX
& "C:\Program Files (x86)\Windows Kits\10\bin\10.0.22621.0\x64\signtool.exe" sign `
/fd SHA256 /a /f "dev-cert.pfx" /p "YourPassword" "msix\yasb-gui-0.0.2-x64.msix"
# Install the signed MSIX
Add-AppxPackage -Path "msix\yasb-gui-0.0.2-x64.msix"
> Note: Update the Publisher in build_msix.py to match your certificate's CN if signing locally.
If you find YASB GUI useful, consider supporting its development:
Your support helps maintain and improve the project.