This commit is contained in:
iFargle 2024-01-19 13:29:34 +09:00
parent 9dfc96ebb2
commit 0c8076424e

View file

@ -10,6 +10,10 @@ in
{ {
programs.starship.settings = { programs.starship.settings = {
format = lib.concatStrings [ format = lib.concatStrings [
"[](${whiteColor})"
"$time"
"[](${whiteColor})"
"[](${orangeColor})" "[](${orangeColor})"
"$time" "$time"
"$username" "$username"
@ -100,7 +104,7 @@ in
time = { time = {
disabled = false; disabled = false;
time_format = "%R"; # Hour:Minute Format time_format = "%R"; # Hour:Minute Format
style = "bg:#33658A"; style = "bg:${whiteColor}";
format = "[ $time]($style)"; format = "[ $time]($style)";
}; };
}; };