feat: add rebuild function
This commit is contained in:
parent
e5d197b0c5
commit
2efc22b67e
2 changed files with 19 additions and 15 deletions
|
@ -13,20 +13,17 @@
|
||||||
mkdir = "mkdir --parent";
|
mkdir = "mkdir --parent";
|
||||||
cp = "cp -i";
|
cp = "cp -i";
|
||||||
};
|
};
|
||||||
functions = {
|
functions =
|
||||||
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
|
let
|
||||||
nrun = "nix run nixpkgs#$argv[1] -- $argv[2..]";
|
rf = builtins.readFile;
|
||||||
mv-bad-creation-date = ''exiftool -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"'';
|
in
|
||||||
rename-images = ''
|
{
|
||||||
set -f input "$PWD/$argv[1]"
|
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
|
||||||
|
nrun = "nix run nixpkgs#$argv[1] -- $argv[2..]";
|
||||||
if not test -d $input
|
mv-bad-creation-date = ''exiftool -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"'';
|
||||||
echo "input is not a directory"
|
rename-images = rf ./rename_images.fish;
|
||||||
else
|
fish_prompt = rf ./fish_prompt.fish;
|
||||||
exiftool -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}"
|
rebuild = "env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname)";
|
||||||
end
|
};
|
||||||
'';
|
|
||||||
fish_prompt = builtins.readFile ./fish_prompt.fish;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
7
home/fish/rename_images.fish
Normal file
7
home/fish/rename_images.fish
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
set -f input "$PWD/$argv[1]"
|
||||||
|
|
||||||
|
if not test -d $input
|
||||||
|
echo "input is not a directory"
|
||||||
|
else
|
||||||
|
exiftool -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}"
|
||||||
|
end
|
Loading…
Add table
Reference in a new issue