From 1029e901d116ec31dcf141fc8c181c050fd65b9f Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Mon, 13 Oct 2025 10:00:16 -0700 Subject: [PATCH] default to no overlay on linux --- src-tauri/src/settings.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src-tauri/src/settings.rs b/src-tauri/src/settings.rs index 8d59550..1bc1760 100644 --- a/src-tauri/src/settings.rs +++ b/src-tauri/src/settings.rs @@ -143,7 +143,10 @@ fn default_selected_language() -> String { } fn default_overlay_position() -> OverlayPosition { - OverlayPosition::Bottom + #[cfg(target_os = "linux")] + return OverlayPosition::None; + #[cfg(not(target_os = "linux"))] + return OverlayPosition::Bottom; } fn default_debug_mode() -> bool {