mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-25 05:42:22 +00:00
add nix-stash script
This commit is contained in:
parent
cff7cf49e8
commit
37ad815725
1 changed files with 78 additions and 0 deletions
78
files/scripts/nix_stash
Executable file
78
files/scripts/nix_stash
Executable file
|
@ -0,0 +1,78 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
FILE_STACK_PATH="/tmp/nix_stash_stack"
|
||||||
|
|
||||||
|
# pop the last line from the file-stack and return it
|
||||||
|
pop_from_file_stack() {
|
||||||
|
line="$(tail -n 1 "$FILE_STACK_PATH")"
|
||||||
|
if [ -z "$line" ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
sed -i "$ d" "$FILE_STACK_PATH"
|
||||||
|
echo "$line"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
do_pop() {
|
||||||
|
last_file="$(pop_from_file_stack)" || exit 1
|
||||||
|
echo "restoring $last_file"
|
||||||
|
trash "$last_file"
|
||||||
|
home-manager switch
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
do_stash() {
|
||||||
|
config_file="$(realpath --no-symlinks "$1")"
|
||||||
|
if [ ! -L "$config_file" ]; then
|
||||||
|
echo "Given file is not a symlink into the nix-store"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
file_in_store="$(readlink -f "$config_file")"
|
||||||
|
|
||||||
|
if ! echo "$file_in_store" | grep -q "/nix/store"; then
|
||||||
|
echo "file is not a symlink into the nix store"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# remove the symlink and write the path to the stack
|
||||||
|
rm -rf "$config_file"
|
||||||
|
echo "$config_file" >> "$FILE_STACK_PATH"
|
||||||
|
|
||||||
|
# replace the file with the contents of the generated config file
|
||||||
|
cp -rp "$file_in_store" "$config_file"
|
||||||
|
chmod 777 "$config_file"
|
||||||
|
|
||||||
|
# open the file in nvim
|
||||||
|
"$EDITOR" "$config_file"
|
||||||
|
}
|
||||||
|
|
||||||
|
do_list() {
|
||||||
|
cat "$FILE_STACK_PATH"
|
||||||
|
}
|
||||||
|
|
||||||
|
print_usage() {
|
||||||
|
echo "usage: $0 {<filepath> | pop | list}"
|
||||||
|
echo " to stash a file: $0 <filepath>"
|
||||||
|
echo " to restore a file: $0 pop"
|
||||||
|
echo " list the stack: $0 pop"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
"")
|
||||||
|
print_usage
|
||||||
|
;;
|
||||||
|
pop)
|
||||||
|
do_pop
|
||||||
|
;;
|
||||||
|
list)
|
||||||
|
do_list
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
do_stash "$1"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue