Removed yazi packages and added some scripts

This commit is contained in:
2025-09-18 12:14:40 +02:00
parent 4bc39fe87a
commit 068ab247f2
68 changed files with 73 additions and 2646 deletions

16
resolve.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -e
pkg="$1"
stow --dotfiles --no "$pkg" 2>&1 |
grep 'cannot stow' |
sed -E 's/.*existing target ([^ ]+).*/\1/' |
while read -r f; do
echo "Removing $HOME/$f with force"
rm -rf -- "$HOME/$f"
done
stow --dotfiles "$pkg"
echo "Stowed $pkg"