From 5502cd8e4d79fbbbc7c85fd76816020d156020c7 Mon Sep 17 00:00:00 2001 From: pika Date: Sat, 3 May 2025 16:24:52 +0200 Subject: [PATCH] changed the script.. --- install.sh | 431 ++++++++++++++++++++++++++++------------------------- 1 file changed, 224 insertions(+), 207 deletions(-) diff --git a/install.sh b/install.sh index 927db0b..454fdc4 100755 --- a/install.sh +++ b/install.sh @@ -9,284 +9,301 @@ BOLD='\033[1m' NC='\033[0m' # No Color echo_error() { - printf "${BOLD}${RED}ERROR: ${NC}${RED}%s${NC}\n" "$1" >&2 + printf "${BOLD}${RED}ERROR: ${NC}${RED}%s${NC}\n" "$1" >&2 } echo_info() { - printf "${BOLD}${CYAN}INFO: ${NC}${CYAN}%s${NC}\n" "$1" + printf "${BOLD}${CYAN}INFO: ${NC}${CYAN}%s${NC}\n" "$1" } echo_warning() { - printf "${BOLD}${YELLOW}WARNING: ${NC}${YELLOW}%s${NC}\n" "$1" + printf "${BOLD}${YELLOW}WARNING: ${NC}${YELLOW}%s${NC}\n" "$1" } echo_note() { - printf "${BOLD}${LIGHT_GREEN}NOTE: ${NC}${LIGHT_GREEN}%s${NC}\n" "$1" + printf "${BOLD}${LIGHT_GREEN}NOTE: ${NC}${LIGHT_GREEN}%s${NC}\n" "$1" } # ─< Check if the given command exists silently >───────────────────────────────────────── command_exists() { - command -v "$@" >/dev/null 2>&1 + command -v "$@" >/dev/null 2>&1 } # ─< Check if the user is root and set sudo variable if necessary >─────────────────────── check_root() { - if [ "$(id -u)" -ne 0 ]; then - if command_exists sudo; then - echo_info "User is not root. Using sudo for privileged operations." - _sudo="sudo" - else - echo_error "No sudo found and you're not root! Can't install packages." - return 1 - fi - else - echo_info "Root access confirmed." - _sudo="" - fi + if [ "$(id -u)" -ne 0 ]; then + if command_exists sudo; then + echo_info "User is not root. Using sudo for privileged operations." + _sudo="sudo" + else + echo_error "No sudo found and you're not root! Can't install packages." + return 1 + fi + else + echo_info "Root access confirmed." + _sudo="" + fi } # ─< Distribution detection and installation >──────────────────────────────────────── get_packager() { - if [ -e /etc/os-release ]; then - echo_info "Detecting distribution..." - . /etc/os-release + if [ -e /etc/os-release ]; then + echo_info "Detecting distribution..." + . /etc/os-release - ID=$(printf "%s" "$ID" | tr '[:upper:]' '[:lower:]') - ID_LIKE=$(printf "%s" "$ID_LIKE" | tr '[:upper:]' '[:lower:]') - case "$ID" in - ubuntu | pop) _install() { $_sudo apt-get install --assume-yes "$@"; } ;; - debian) _install() { $_sudo apt-get install --assume-yes "$@"; } ;; - fedora) _install() { $_sudo dnf install -y "$@"; } ;; - alpine) _install() { $_sudo apk add "$@"; } ;; - arch | archcraft | manjaro | garuda | endeavour) _install() { $_sudo pacman -S --noconfirm "$@"; } ;; - opensuse*) _install() { $_sudo zypper in -y "$@"; } ;; - *) - if echo "$ID_LIKE" | grep -q "debian"; then - _install() { $_sudo apt-get install --assume-yes "$@"; } - elif echo "$ID_LIKE" | grep -q "ubuntu"; then - _install() { $_sudo apt-get install --assume-yes "$@"; } - elif echo "$ID_LIKE" | grep -q "arch"; then - _install() { $_sudo pacman -S --noconfirm "$@"; } - elif echo "$ID_LIKE" | grep -q "fedora"; then - _install() { $_sudo dnf install -y "$@"; } - elif echo "$ID_LIKE" | grep -q "suse"; then - _install() { $_sudo zypper in -y "$@"; } - else - echo_error "Unsupported distribution: $ID" - return 1 - fi - ;; - esac - else - echo_error "Unable to detect distribution. /etc/os-release not found." - return 1 - fi + ID=$(printf "%s" "$ID" | tr '[:upper:]' '[:lower:]') + ID_LIKE=$(printf "%s" "$ID_LIKE" | tr '[:upper:]' '[:lower:]') + case "$ID" in + ubuntu | pop) _install() { $_sudo apt-get install --assume-yes "$@"; } ;; + debian) _install() { $_sudo apt-get install --assume-yes "$@"; } ;; + fedora) _install() { $_sudo dnf install -y "$@"; } ;; + alpine) _install() { $_sudo apk add "$@"; } ;; + arch | archcraft | manjaro | garuda | endeavour) _install() { $_sudo pacman -S --noconfirm "$@"; } ;; + opensuse*) _install() { $_sudo zypper in -y "$@"; } ;; + *) + if echo "$ID_LIKE" | grep -q "debian"; then + _install() { $_sudo apt-get install --assume-yes "$@"; } + elif echo "$ID_LIKE" | grep -q "ubuntu"; then + _install() { $_sudo apt-get install --assume-yes "$@"; } + elif echo "$ID_LIKE" | grep -q "arch"; then + _install() { $_sudo pacman -S --noconfirm "$@"; } + elif echo "$ID_LIKE" | grep -q "fedora"; then + _install() { $_sudo dnf install -y "$@"; } + elif echo "$ID_LIKE" | grep -q "suse"; then + _install() { $_sudo zypper in -y "$@"; } + else + echo_error "Unsupported distribution: $ID" + return 1 + fi + ;; + esac + else + echo_error "Unable to detect distribution. /etc/os-release not found." + return 1 + fi } silentexec() { - "$@" >/dev/null 2>&1 + "$@" >/dev/null 2>&1 } __pre_stow__() { - echo_note "__pre_stow__" - conf="$HOME/.config" - bak_dir="$HOME/.bak" - dirs=( - "btop" - "zsh" - "yazi" - "tmux" - "nvim" - "ranger" - "lf" - ) + echo_note "__pre_stow__" + conf="$HOME/.config" + bak_dir="$HOME/.bak" + dirs=( + "btop" + "zsh" + "yazi" + "tmux" + "nvim" + "ranger" + "lf" + ) - if [ ! -d "$bak_dir" ]; then - echo_info "backup dir created at $bak_dir" && - silentexec mkdir "$bak_dir" - else - echo_info "Backup dir already present, clearing now" && - rm -rf "${bak_dir:?}/*" - fi + if [ ! -d "$bak_dir" ]; then + echo_info "backup dir created at $bak_dir" && + silentexec mkdir "$bak_dir" + else + echo_info "Backup dir already present, clearing now" && + rm -rf "${bak_dir:?}/*" + fi - for _dirs in "${dirs[@]}"; do - if [ -d "$conf/$_dirs" ]; then - mv -f "$conf/$_dirs" "$bak_dir" - fi - done + for _dirs in "${dirs[@]}"; do + if [ -d "$conf/$_dirs" ]; then + mv -f "$conf/$_dirs" "$bak_dir" + fi + done - h_files=( - ".zshrc" - ".zshenv" - ) + h_files=( + ".zshrc" + ".zshenv" + ) - h_dirs=( - ".tmux" - ".zsh" - ) + h_dirs=( + ".tmux" + ".zsh" + ) - for _f in "${h_files[@]}"; do - if [ -f "$HOME/$_f" ]; then - mv -f "$HOME/$_f" "$bak_dir" && echo_info "Moved $_f to $bak_dir" - fi - done + for _f in "${h_files[@]}"; do + if [ -f "$HOME/$_f" ]; then + mv -f "$HOME/$_f" "$bak_dir" && echo_info "Moved $_f to $bak_dir" + fi + done - for _d in "${h_dirs[@]}"; do - if [ -d "$HOME/$_d" ]; then - mv -f "$HOME/$_d" "$bak_dir" && echo_info "Moved $_d to $bak_dir" - fi - done + for _d in "${h_dirs[@]}"; do + if [ -d "$HOME/$_d" ]; then + mv -f "$HOME/$_d" "$bak_dir" && echo_info "Moved $_d to $bak_dir" + fi + done - if [ -d "$HOME/.local/share/fastfetch/" ]; then - mv -f "$HOME/.local/share/fastfetch" "$bak_dir" - fi + if [ -d "$HOME/.local/share/fastfetch/" ]; then + mv -f "$HOME/.local/share/fastfetch" "$bak_dir" + fi } askThings() { - # echo_info "Choose a menu - [r]ofi || [t]ofi" - # read -r askMenu