feat(vars): add different color schemes for starship prompt

This commit is contained in:
matt1432 2024-01-24 18:39:18 -05:00
parent f8b89f8fcf
commit ae55d93ace
9 changed files with 106 additions and 26 deletions

View file

@ -21,6 +21,7 @@ in {
vars = {
mainUser = "matt";
hostName = "binto";
promptMainColor = "purple";
mainMonitor = "desc:GIGA-BYTE TECHNOLOGY CO. LTD. G27QC 0x00000B1D";
greetdDupe = false;
fontSize = 12.5;

View file

@ -16,6 +16,12 @@ in {
vars = {
mainUser = "matt";
hostName = deviceName;
promptMainColor =
if deviceName == "thingone"
then "green"
else if deviceName == "thingtwo"
then "red"
else "purple";
};
users.users.${mainUser} = {

View file

@ -18,6 +18,7 @@ in {
vars = {
mainUser = "matt";
hostName = "servivi";
promptMainColor = "blue";
};
users.users = {

View file

@ -19,6 +19,7 @@ in {
vars = {
mainUser = "matt";
hostName = "wim";
promptMainColor = "purple";
fontSize = 12.5;
mainMonitor = "eDP-1";
};