test
This commit is contained in:
parent
8331a0418a
commit
dc640868aa
1 changed files with 11 additions and 3 deletions
|
@ -11,8 +11,9 @@ in
|
|||
programs.starship.settings = {
|
||||
format = lib.concatStrings [
|
||||
"[](${orangeColor})"
|
||||
"$os"
|
||||
"$clock"
|
||||
"$username"
|
||||
"$hostname"
|
||||
"[](bg:${yellowColor} fg:${orangeColor})"
|
||||
"$directory"
|
||||
"[](fg:${yellowColor} bg:${blueColor})"
|
||||
|
@ -35,7 +36,7 @@ in
|
|||
# "[](fg:#86BBD8 bg:#06969A)"
|
||||
"$docker_context"
|
||||
# "[](fg:#06969A bg:#33658A)"
|
||||
"$time"
|
||||
# d"$time"
|
||||
# "[ ](fg:#33658A)"
|
||||
];
|
||||
|
||||
|
@ -47,6 +48,13 @@ in
|
|||
disabled = false;
|
||||
};
|
||||
|
||||
hostname = {
|
||||
ssh_only = true;
|
||||
style_user = "fg:${blackColor} bg:${orangeColor}";
|
||||
format = "$[$hostname]($style)";
|
||||
disabled = false;
|
||||
};
|
||||
|
||||
os = {
|
||||
style = "bg:${orangeColor}";
|
||||
disabled = true;
|
||||
|
@ -92,7 +100,7 @@ in
|
|||
disabled = false;
|
||||
time_format = "%R"; # Hour:Minute Format
|
||||
style = "bg:#33658A";
|
||||
format = "[ ♥ $time ]($style)";
|
||||
format = "[ [$time] ]($style)";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue