From 8508fb4f24115cb6255e22e9c489bec2588776c9 Mon Sep 17 00:00:00 2001 From: Myned Date: Tue, 22 Oct 2024 07:45:55 -0500 Subject: [PATCH] clipse: fix image display Signed-off-by: Myned --- options/custom/programs/clipse.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/options/custom/programs/clipse.nix b/options/custom/programs/clipse.nix index d54d418..c1c72f3 100644 --- a/options/custom/programs/clipse.nix +++ b/options/custom/programs/clipse.nix @@ -22,11 +22,17 @@ in { home.file.".config/clipse/config.json".text = '' { "historyFile": "clipboard_history.json", - "maxHistory": 100, + "maxHistory": 50, "allowDuplicates": false, "themeFile": "custom_theme.json", "tempDir": "tmp_files", - "logFile": "clipse.log" + "logFile": "clipse.log", + "imageDisplay": { + "type": "kitty", + "scaleX": 9, + "scaleY": 9, + "heightCut": 2 + } } ''; };