chore: make use of ts injection

This commit is contained in:
Nydragon 2024-12-19 12:57:41 +01:00
parent 78e63a2044
commit 599a549540
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

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