fix: amoled Key

This commit is contained in:
auth
2024-04-27 13:44:20 +02:00
parent 638dba00cc
commit 178f2f4ac6
2 changed files with 5 additions and 0 deletions

View File

@@ -358,6 +358,10 @@
"name": "Enable App Appearance Settings",
"description": "Enables the hidden App Appearance Setting\nMay not be required on newer Snapchat versions"
},
"amoled_dark_mode": {
"name": "AMOLED Dark Mode",
"description": "Enables AMOLED dark mode\nMake sure Snapchats Dark mode is enabled"
},
"customize_ui": {
"name": "Colors",
"description": "Customize Snapchats Colors",

View File

@@ -36,6 +36,7 @@ class UserInterfaceTweaks : ConfigContainer() {
).apply {
set(mutableListOf("conversation_info", MessagingRuleType.STEALTH.key))
}
val amoledDarkMode = boolean("amoled_dark_mode") { requireRestart() }
val customizeUi = container("customize_ui", CustomizeUIConfig()) { addNotices(FeatureNotice.UNSTABLE); requireRestart() }
val friendFeedMessagePreview = container("friend_feed_message_preview", FriendFeedMessagePreview()) { requireRestart() }
val snapPreview = boolean("snap_preview") { addNotices(FeatureNotice.UNSTABLE); requireRestart() }