chore: make use of ts injection
This commit is contained in:
parent
78e63a2044
commit
599a549540
1 changed files with 19 additions and 15 deletions
|
@ -9,11 +9,14 @@ in
|
|||
clip = "wl-copy";
|
||||
};
|
||||
functions = {
|
||||
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
|
||||
mv-bad-creation-date = ''
|
||||
gitignore = # fish
|
||||
"curl -sL https://www.gitignore.io/api/$argv";
|
||||
mv-bad-creation-date = # fish
|
||||
''
|
||||
${getExe' pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"
|
||||
'';
|
||||
rename-images = ''
|
||||
rename-images = # fish
|
||||
''
|
||||
set -f input "$PWD/$argv[1]"
|
||||
|
||||
if not test -d $input
|
||||
|
@ -23,7 +26,8 @@ in
|
|||
end
|
||||
'';
|
||||
fish_prompt = builtins.readFile ./fish_prompt.fish;
|
||||
revert = ''
|
||||
revert = # fish
|
||||
''
|
||||
env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname) --rollback
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue