From 59be18923330cfbeb0a100a19171a34f15b649a3 Mon Sep 17 00:00:00 2001 From: Jan De Dobbeleer Date: Thu, 15 Feb 2024 11:55:28 +0100 Subject: [PATCH] fix(image): add terminal width to export --- website/export_themes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/website/export_themes.js b/website/export_themes.js index b9323e5f..f6d731d7 100644 --- a/website/export_themes.js +++ b/website/export_themes.js @@ -88,6 +88,7 @@ themeConfigOverrrides.set('catppuccin_mocha.omp.json', newThemeConfig(40, 40, 'I poshCommand += ` --rprompt-offset=${config.rpromptOffset}`; poshCommand += ` --cursor-padding=${config.cursorPadding}`; poshCommand += ` --background-color=${config.bgColor}`; + poshCommand += ` --terminal-width=200`; if (config.author !== '') { poshCommand += ` --author="${config.author}"`; }