From c51cdb0c4defc95342400e462bddaa1e327421dc Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Sat, 16 Sep 2023 13:53:39 +0200 Subject: [PATCH] add install scripts --- install.bash | 23 +++++++++++++++++++++++ install.zsh | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100755 install.bash create mode 100755 install.zsh diff --git a/install.bash b/install.bash new file mode 100755 index 0000000..82f8282 --- /dev/null +++ b/install.bash @@ -0,0 +1,23 @@ +#!/usr/bin/env bash + +# Adds $1 to ~/.bashrc if not already present +function _add_to_config { + if ! grep "$1" ~/.bashrc > /dev/null; then + echo "$1" >> ~/.bashrc + fi +} + +# Link files +basedir="$(dirname "$(realpath "$0")")" +mkdir -p ~/.local/bin +ln -frs "${basedir}/gis" ~/.local/bin/gis +echo "Created link '~/.local/bin/gis'" + +# Modify bashrc +touch ~/.bashrc +_add_to_config "export PATH=\$PATH:/home/${USER}/.local/bin" +echo "Updated '~/.bashrc'" + +echo +echo "Source ~/.bashrc to use gis" +echo "To update gis in future execute 'git pull' in '${basedir}'" diff --git a/install.zsh b/install.zsh new file mode 100755 index 0000000..60dbdf9 --- /dev/null +++ b/install.zsh @@ -0,0 +1,23 @@ +#!/usr/bin/env zsh + +# Adds $1 to ~/.zshrc if not already present +function _add_to_config { + if ! grep "$1" ~/.zshrv > /dev/null; then + echo "$1" >> ~/.zshrc + fi +} + +# Link files +basedir="$(dirname "$(realpath "$0")")" +mkdir -p ~/.local/{bin,share/bash-completion/completions} +ln -frs "${basedir}/gis" ~/.local/bin/gis +echo "Created link '~/.local/bin/gis'" + +# Modify config +touch ~/.zshrc +_add_to_config "export PATH=\$PATH:/home/${USER}/.local/bin" +echo "Updated '~/.zshrc'" + +echo +echo "Source ~/.zshrc to use gis" +echo "To update gis in future execute 'git pull' in '${basedir}'"