feat(home): Fish greeting

This commit is contained in:
punkfairie 2024-11-17 17:00:54 -08:00
parent 71e79fbcae
commit 0e03c73ac4
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696

View file

@ -19,6 +19,10 @@ in
# general # general
babelfish babelfish
# for fish_greeting()
marleyos.figlet-xero-fonts
lolcat
# for extract() # for extract()
gnutar gnutar
bzip2 bzip2
@ -29,8 +33,6 @@ in
unrar-free unrar-free
]; ];
# TODO: Set the greeting to `figlet -f Elite marleyOS`
programs.fish = { programs.fish = {
enable = true; enable = true;
@ -71,6 +73,12 @@ in
}; };
functions = { functions = {
fish_greeting = # fish
''
echo ""
figlet -f Elite " marleyOS" | lolcat
'';
extract = { extract = {
argumentNames = "file"; argumentNames = "file";
body = # fish body = # fish