Fix Brightness & Tray

This commit is contained in:
Ly-sec 2025-08-22 17:00:39 +02:00
parent 8e562e0701
commit 12092ca6f6
5 changed files with 23 additions and 13 deletions

View file

@ -47,6 +47,7 @@ Singleton {
// -----------
function applyOpacity(color, opacity) {
// Convert color to string and apply opacity
if (!color) return "transparent"
return color.toString().replace("#", "#" + opacity)
}