tvl-depot/configs/uninstall

12 lines
306 B
Text
Raw Normal View History

#!/usr/bin/env bash
configs="$DOTFILES/configs"
if [[ $(uname) == 'Darwin' ]]; then
(cd "$configs/os_x" && stow --delete --target="$HOME" *)
elif [[ $(uname) == 'Linux' ]]; then
(cd "$configs/linux" && stow --delete --target="$HOME" *)
fi
(cd "$configs/shared" && stow --delete --target="$HOME" *)