gardesk/gar / e50c72e

Browse files

disable screen timeout by default - X11 blanking triggers Xid 79 on NVIDIA

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
e50c72e85e961baa452665164b445e5aa874a3e3
Parents
72af8c4
Tree
366c168

1 changed file

StatusFile+-
M gar/src/config/mod.rs 3 2
gar/src/config/mod.rsmodified
@@ -555,8 +555,9 @@ impl Default for Config {
555555
             notification_enabled: false,
556556
             // Monitor order: empty = sort by X position
557557
             monitor_order: Vec::new(),
558
-            // Screen timeout: enabled by default (uses software blanking, never hardware DPMS)
559
-            screen_timeout_enabled: true,
558
+            // Screen timeout: disabled by default - X11 screen saver blanking triggers
559
+            // Xid 79 GPU crashes on NVIDIA with multi-monitor HDMI setups
560
+            screen_timeout_enabled: false,
560561
             screen_timeout_seconds: 600,
561562
             // Compositor selection: "picom" (default), "garchomp", or "none"
562563
             compositor: "picom".to_string(),