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,23 +9,27 @@ in
|
||||||
clip = "wl-copy";
|
clip = "wl-copy";
|
||||||
};
|
};
|
||||||
functions = {
|
functions = {
|
||||||
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
|
gitignore = # fish
|
||||||
mv-bad-creation-date = ''
|
"curl -sL https://www.gitignore.io/api/$argv";
|
||||||
${getExe' pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"
|
mv-bad-creation-date = # fish
|
||||||
'';
|
''
|
||||||
rename-images = ''
|
${getExe' pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"
|
||||||
set -f input "$PWD/$argv[1]"
|
'';
|
||||||
|
rename-images = # fish
|
||||||
|
''
|
||||||
|
set -f input "$PWD/$argv[1]"
|
||||||
|
|
||||||
if not test -d $input
|
if not test -d $input
|
||||||
echo "input is not a directory"
|
echo "input is not a directory"
|
||||||
else
|
else
|
||||||
${getExe' pkgs.exiftool "exiftool"} -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}"
|
${getExe' pkgs.exiftool "exiftool"} -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}"
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
fish_prompt = builtins.readFile ./fish_prompt.fish;
|
fish_prompt = builtins.readFile ./fish_prompt.fish;
|
||||||
revert = ''
|
revert = # fish
|
||||||
env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname) --rollback
|
''
|
||||||
'';
|
env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname) --rollback
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue