From 109bf0f93b9152b7d71098a4b3130d69a706e4a6 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Fri, 7 Nov 2025 13:39:58 -0500 Subject: [PATCH] Add leading space to hostname segment --- starship.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/starship.toml b/starship.toml index cc59b1b..db1f6d4 100644 --- a/starship.toml +++ b/starship.toml @@ -1,6 +1,6 @@ add_newline = false -format = '${custom.toolbox}${custom.localhost}[](bold fg:#XXXXXX bg:#444444)$directory$python$git_branch$git_status$status$character' +format = '[ ](bold fg:#000000 bg:#XXXXXX)${custom.toolbox}${custom.localhost}[](bold fg:#XXXXXX bg:#444444)$directory$python$git_branch$git_status$status$character' [directory] format = "[$read_only]($read_only_style)[$path ]($style)[](fg:#444444 bg:#XXXXXX)" @@ -39,10 +39,10 @@ format = '([](bold fg:#XXXXXX bg:#fcf52a)[$virtualenv]($style)[](bold bg:# [custom.toolbox] style = "bold bg:#XXXXXX fg:bright-white" -command = "echo -ne 'toolbox '" +command = "echo -ne ' toolbox'" when = '[ -f /run/.toolboxenv ]' [custom.localhost] style = "bold bg:#XXXXXX fg:bright-white" -command = "echo -ne $HOSTNAME " +command = 'echo -ne " $HOSTNAME"' when = '[ ! -f /run/.toolboxenv ]'