feat: add fish print function fishl
This commit is contained in:
parent
753f698ccf
commit
5cd6293472
5 changed files with 21 additions and 1 deletions
|
@ -41,4 +41,6 @@
|
||||||
nixedit = pkgs.writers.writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR .";
|
nixedit = pkgs.writers.writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR .";
|
||||||
|
|
||||||
getext = pkgs.writeScriptBin "ls | grep -E \"\.[a-zA-Z0-9]+$\" --only-matching | sort | uniq";
|
getext = pkgs.writeScriptBin "ls | grep -E \"\.[a-zA-Z0-9]+$\" --only-matching | sort | uniq";
|
||||||
|
|
||||||
|
fishl = pkgs.writers.writeFishBin "fishl" ./logo.fish;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,4 +4,5 @@ with import ./. { inherit pkgs; };
|
||||||
screenshot
|
screenshot
|
||||||
set-background
|
set-background
|
||||||
nixedit
|
nixedit
|
||||||
|
fishl
|
||||||
]
|
]
|
||||||
|
|
16
home/scripts/logo.fish
Normal file
16
home/scripts/logo.fish
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Credit: https://github.com/justinmayer/tackle
|
||||||
|
echo ' '(set_color F00)'___
|
||||||
|
___======____='(set_color FF7F00)'-'(set_color FF0)'-'(set_color FF7F00)'-='(set_color F00)')
|
||||||
|
/T \_'(set_color FF0)'--='(set_color FF7F00)'=='(set_color F00)')
|
||||||
|
[ \ '(set_color FF7F00)'('(set_color FF0)'0'(set_color FF7F00)') '(set_color F00)'\~ \_'(set_color FF0)'-='(set_color FF7F00)'='(set_color F00)')
|
||||||
|
\ / )J'(set_color FF7F00)'~~ \\'(set_color FF0)'-='(set_color F00)')
|
||||||
|
\\\\___/ )JJ'(set_color FF7F00)'~'(set_color FF0)'~~ '(set_color F00)'\)
|
||||||
|
\_____/JJJ'(set_color FF7F00)'~~'(set_color FF0)'~~ '(set_color F00)'\\
|
||||||
|
'(set_color FF7F00)'/ '(set_color FF0)'\ '(set_color FF0)', \\'(set_color F00)'J'(set_color FF7F00)'~~~'(set_color FF0)'~~ '(set_color FF7F00)'\\
|
||||||
|
(-'(set_color FF0)'\)'(set_color F00)'\='(set_color FF7F00)'|'(set_color FF0)'\\\\\\'(set_color FF7F00)'~~'(set_color FF0)'~~ '(set_color FF7F00)'L_'(set_color FF0)'_
|
||||||
|
'(set_color FF7F00)'('(set_color F00)'\\'(set_color FF7F00)'\\) ('(set_color FF0)'\\'(set_color FF7F00)'\\\)'(set_color F00)'_ '(set_color FF0)'\=='(set_color FF7F00)'__
|
||||||
|
'(set_color F00)'\V '(set_color FF7F00)'\\\\'(set_color F00)'\) =='(set_color FF7F00)'=_____ '(set_color FF0)'\\\\\\\\'(set_color FF7F00)'\\\\
|
||||||
|
'(set_color F00)'\V) \_) '(set_color FF7F00)'\\\\'(set_color FF0)'\\\\JJ\\'(set_color FF7F00)'J\)
|
||||||
|
'(set_color F00)'/'(set_color FF7F00)'J'(set_color FF0)'\\'(set_color FF7F00)'J'(set_color F00)'T\\'(set_color FF7F00)'JJJ'(set_color F00)'J)
|
||||||
|
(J'(set_color FF7F00)'JJ'(set_color F00)'| \UUU)
|
||||||
|
(UU)'(set_color normal)
|
|
@ -73,6 +73,7 @@
|
||||||
|
|
||||||
custom.scripts.nixedit
|
custom.scripts.nixedit
|
||||||
custom.scripts.set-background
|
custom.scripts.set-background
|
||||||
|
custom.scripts.fishl
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
}:
|
}:
|
||||||
lib.mkIf config.programs.steam.enable {
|
lib.mkIf config.programs.steam.enable {
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
gamescopeSession.enable = true;
|
gamescopeSession.enable = true; # Adds a steam entry to the login manager
|
||||||
extest.enable = true;
|
extest.enable = true;
|
||||||
localNetworkGameTransfers.openFirewall = true;
|
localNetworkGameTransfers.openFirewall = true;
|
||||||
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue