fixed transparent defaulting to true

This commit is contained in:
2026-03-17 09:30:33 +01:00
parent 84945b9d83
commit 0ce858da5c

View File

@@ -4,9 +4,9 @@ use std::fs;
/// Configuration for the application's appearance.
#[derive(Debug, Deserialize, Serialize, Clone)]
#[serde(default)]
pub struct ThemeConfig {
/// If true, skip rendering the background block to let the terminal's transparency show.
#[serde(default)]
pub transparent: bool,
/// Color for standard background areas (when not transparent).
pub crust: String,
@@ -91,6 +91,7 @@ impl Default for ThemeConfig {
/// Custom keybindings for navigation and application control.
#[derive(Debug, Deserialize, Serialize, Clone)]
#[serde(default)]
pub struct KeybindsConfig {
pub down: String,
pub up: String,