From 5a7c6c45720bb7e59bc3b24e7529a2682728a73e Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Sat, 18 Apr 2020 19:32:09 +0200 Subject: [PATCH] Make the Auto backend the default one on Linux --- src/config/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index 8356b5a..c308ce6 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -257,7 +257,7 @@ impl Default for BackendType { #[cfg(target_os = "linux")] fn default() -> Self { - BackendType::Clipboard + BackendType::Auto } }