Add leading space to hostname segment

This commit is contained in:
2025-11-07 13:39:58 -05:00
parent 844c10948b
commit 109bf0f93b

View File

@@ -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 ]'