1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 04:53:33 +02:00

starship: remove deprecated character.symbol setting

Fixes #1550
PR #1695
This commit is contained in:
Robin Townsend 2021-01-02 20:08:23 +00:00 committed by Robert Helgesson
parent 68dfc86173
commit b9597e5774
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
3 changed files with 10 additions and 3 deletions

View File

@ -50,7 +50,10 @@ in {
"$character" "$character"
]; ];
scan_timeout = 10; scan_timeout = 10;
character.symbol = ""; character = {
success_symbol = "";
error_symbol = "";
};
} }
''; '';
description = '' description = ''

View File

@ -18,7 +18,8 @@ style = "bold yellow"
threshold = 30 threshold = 30
[character] [character]
symbol = "➜" error_symbol = "➜"
success_symbol = "➜"
[memory_usage] [memory_usage]
threshold = -1 threshold = -1

View File

@ -17,7 +17,10 @@ with lib;
"$character" "$character"
]; ];
scan_timeout = 10; scan_timeout = 10;
character.symbol = ""; character = {
success_symbol = "";
error_symbol = "";
};
package.disabled = true; package.disabled = true;
memory_usage.threshold = -1; memory_usage.threshold = -1;
aws.style = "bold blue"; aws.style = "bold blue";