From c6c99f926f97507c41d9bdec59a2fb7d0368a350 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Mon, 30 Sep 2019 10:51:05 +0100 Subject: Move scripts to bin/ directory --- .stowignore | 4 +++- README.md | 5 +++-- bin/.local/bin/install_dotfiles | 7 +++++++ bin/.local/bin/install_wget | 11 +++++++++++ install_wget | 11 ----------- 5 files changed, 24 insertions(+), 14 deletions(-) create mode 100755 bin/.local/bin/install_dotfiles create mode 100755 bin/.local/bin/install_wget delete mode 100644 install_wget diff --git a/.stowignore b/.stowignore index b450069..d3ceb07 100644 --- a/.stowignore +++ b/.stowignore @@ -1,7 +1,9 @@ .git .gitignore .stowignore +.mrconfig LICENSE README.md crontab -pkgs +plugins +arch diff --git a/README.md b/README.md index 2c87241..cfb8027 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,9 @@ Being a *vim* user, I find it very convenient to use tools with *vi* keybindings # Management Deploy with stow: -``` - find . -mindepth 1 -maxdepth 1 -printf "%P\\0" | grep -zvFf .stowignore | xargs -0 stow -t $HOME --no-folding +```bash +find . -mindepth 1 -maxdepth 1 -printf "%P\\0" | grep -zvFf .stowignore | \ + xargs -0 stow -t $HOME --no-folding ``` Personal files (`mutt` aliases, `vim` snippets, `tmuxinator` sessions, etc.) are located in a different git repository and stowed normally, with folding. diff --git a/bin/.local/bin/install_dotfiles b/bin/.local/bin/install_dotfiles new file mode 100755 index 0000000..ecc7371 --- /dev/null +++ b/bin/.local/bin/install_dotfiles @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +dotfiles_directory=$HOME/dotfiles + +cd "$dotfiles_directory" || { echo "Nonexistent directory $dotfiles_directory"; exit; } +find . -mindepth 1 -maxdepth 1 -printf "%P\\0" | grep -zvFf .stowignore | \ + xargs -0 stow -t "$HOME" --no-folding diff --git a/bin/.local/bin/install_wget b/bin/.local/bin/install_wget new file mode 100755 index 0000000..4800e8d --- /dev/null +++ b/bin/.local/bin/install_wget @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +find . -type f -name "*.wget" | \ + while read -r file; do + destination=$HOME/$(echo "${file%.*}" | sed 's#\./[^/]*/##') + mkdir -p "$(dirname "$destination")" + wget "$(cat "$file")" -O "$destination" + if [[ "$file" == ./bin/* ]]; then + chmod +x "$destination" + fi + done && echo "Installation successful" diff --git a/install_wget b/install_wget deleted file mode 100644 index 4800e8d..0000000 --- a/install_wget +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -find . -type f -name "*.wget" | \ - while read -r file; do - destination=$HOME/$(echo "${file%.*}" | sed 's#\./[^/]*/##') - mkdir -p "$(dirname "$destination")" - wget "$(cat "$file")" -O "$destination" - if [[ "$file" == ./bin/* ]]; then - chmod +x "$destination" - fi - done && echo "Installation successful" -- cgit v1.2.3