From 64e2e2af9ad9c461925bc8be972478a6035fa383 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Sun, 15 Oct 2023 23:01:03 +0800 Subject: [PATCH] fix: adapt another `$TERM` value of `foot-extra` for foot --- adaptor/src/adaptor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/adaptor/src/adaptor.rs b/adaptor/src/adaptor.rs index 1c361bc2..df651b89 100644 --- a/adaptor/src/adaptor.rs +++ b/adaptor/src/adaptor.rs @@ -53,6 +53,7 @@ impl Adaptor { match term.as_str() { "xterm-kitty" => return Self::Kitty, "foot" => return Self::Sixel, + "foot-extra" => return Self::Sixel, _ => {} } match env::var("XDG_SESSION_TYPE").unwrap_or_default().as_str() {