1
0
Fork 0

Improve stow command

This commit is contained in:
Nexus 2024-07-14 02:24:59 +01:00
parent d85f5f853f
commit 1007c354b9
Signed by: nex
GPG key ID: 0FA334385D0B689F

7
stow
View file

@ -1,10 +1,15 @@
#!/bin/env bash
set -e
if [ ! $(which stow) ]; then
echo 'Stow is not installed! apt/dnf install stow | pacman -S stow | apk add stow' > /dev/stderr
exit 1
fi;
echo 'Stow is installed & in PATH.'
if [ -f $HOME/.bashrc ]; then
echo 'Removing existing bashrc...'
mv $HOME/.bashrc $HOME/.bashrc.pre-stow
fi;
echo 'All file conflicts resolved, stowing...'
stow .
stow -t "$HOME" .
echo 'Finished stowing.'