settings styling and sound disabled not working bugfix

This commit is contained in:
choco
2025-10-09 20:21:01 +02:00
parent cd817487e4
commit 85ecea6391
4 changed files with 990 additions and 640 deletions

View File

@@ -87,6 +87,7 @@ public class LightlessConfig : ILightlessConfiguration
public bool EnableNotificationAnimations { get; set; } = true;
public int MaxSimultaneousNotifications { get; set; } = 5;
public bool AutoDismissOnAction { get; set; } = true;
public bool DismissNotificationOnClick { get; set; } = false;
public bool ShowNotificationTimestamp { get; set; } = false;
public bool EnableNotificationHistory { get; set; } = true;
public int NotificationHistorySize { get; set; } = 50;
@@ -95,6 +96,11 @@ public class LightlessConfig : ILightlessConfiguration
public uint CustomWarningSoundId { get; set; } = 15; // Se15
public uint CustomErrorSoundId { get; set; } = 16; // Se16
public bool UseCustomSounds { get; set; } = false;
public uint PairRequestSoundId { get; set; } = 5; // Se5
public bool DisableInfoSound { get; set; } = false;
public bool DisableWarningSound { get; set; } = false;
public bool DisableErrorSound { get; set; } = false;
public bool DisablePairRequestSound { get; set; } = false;
// till here c:
public bool UseFocusTarget { get; set; } = false;
public bool overrideFriendColor { get; set; } = false;