diff options
| author | bh <qn+git@epicurus.dev> | 2026-04-01 20:59:53 +0800 |
|---|---|---|
| committer | bh <qn+git@epicurus.dev> | 2026-04-01 20:59:53 +0800 |
| commit | e497345779c98353ca3481121981d7ef41bf7b73 (patch) | |
| tree | 4be69ba5515bdd5ef758d097ae3a1d083521b3ee /.install/stowall | |
| parent | 71e75e351867060d8cf00e676b70341022f0fe17 (diff) | |
Refactor scripts
Diffstat (limited to '.install/stowall')
| -rwxr-xr-x | .install/stowall | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/.install/stowall b/.install/stowall deleted file mode 100755 index ecb899f..0000000 --- a/.install/stowall +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -DOTFILES_DIR="${1:-$HOME/Dotfiles}" - -cd "$DOTFILES_DIR" - -for pkg in *; do - [[ "$pkg" == "system" ]] && continue - [[ -d "$pkg" ]] || continue - stow -d "$DOTFILES_DIR" -t "$HOME" "$pkg" -done - -if [[ -d system ]]; then - for pkg in system/*; do - [[ -d "$pkg" ]] || continue - sudo stow -d "$DOTFILES_DIR/system" -t / "$(basename "$pkg")" - done -fi |
