diff --git a/README.md b/README.md index 2c4e542..9c3f6f2 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,6 @@ Clone then apply these dotfiles: chezmoi init dogeystamp/dotfiles --apply ``` -Currently, a legacy `dotinstall.sh` is also available that installs the dotfiles as symlinks. - After, install some packages. A list is provided in the `programs` file. This list encompasses all packages needed for a full system, including utilities and games. Feel free to pick and choose which packages you want. diff --git a/dotinstall.sh b/dotinstall.sh deleted file mode 100755 index 402692e..0000000 --- a/dotinstall.sh +++ /dev/null @@ -1,109 +0,0 @@ -#!/bin/sh - -# Installs dotfiles and Python packages - -set -e - -SCRIPT_NAME="$(basename $0)" - -# Default source for dotfiles -SRCFOLDER="$(dirname "$0")/src/" -PYREQS="$(realpath "$(dirname "$0")/programs-python")" -DESTFOLDER="$HOME" - -# Allow overwriting of outdated files -FORCE="N" -VERBOSE="N" -INSTALL_PYTHON="N" - -display_help () { -cat >&2 <&2 - fi - fi - else - link "$SRC" "$DEST" - fi -done - -printf "Symlinked dotfiles.\n" >&2 - -if [ "$INSTALL_PYTHON" = "Y" ]; then - if command -v pipx > /dev/null; then - printf "Installing Python packages via pipx...\n" >&2 - "$PYREQS" - else - printf "'pipx' is missing. Not installing Python packages...\n" >&2 - fi -fi