feat(home): Fish greeting
This commit is contained in:
parent
71e79fbcae
commit
0e03c73ac4
1 changed files with 10 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue