馃挱 Background Image | Wallpaper 路 Issue #3059 路 helix-editor/helix ================================================================= !https://github.com/helix-editor/helix/issues/3059 Date: October 8, 2024 Background Image | Wallpaper 路 Issue #3059 路 helix-editor/helix Describe your feature request Hey ! It'd be cool to have the ability to set a background-image on supported terminals (like kitty). Like on IntelliJ: Here is an example of what it'd be on helix: GitHub 路 github.com [1] How to make helix themes transparent. You can make any built-in theme transparent in helix with one line, a few extras and you can make all the pop ups, help menus and status line trransparant as well. ``` bash mkdir -p ~/.config/helix/themes hx ``` `:o ~/.config/helix/themes/dracula_transparant.toml` ``` toml # ~/.config/helix/themes/dracula_transparant.toml inherits = "dracula" "ui.background" = { fg = "foreground" } "ui.menu" = { fg = "white" } "ui.popup" = { fg = "white" } "ui.window" = { fg = "white" } "ui.help" = { fg = "light-gray" } "ui.statusline" = { fg = "gray" } "ui.statusline.inactive" = { fg = "black" } ``` `:config-edit` ``` toml # ~/.config/helix/config.toml theme="dracula_transparant" ``` !!! note This post is a thought [2]. It's a short note that I make about someone else's content online #thoughts [3] References: [1]: https://github.com/helix-editor/helix/issues/3059 [2]: /thoughts/ [3]: /tags/thoughts/