1
0
Fork 0
linux-conf/install.sh

35 lines
960 B
Bash
Executable file

#!/bin/bash
source ./scripts/common.sh
if [ -f .env ]; then
# Load Environment Variables
export $(cat .env | grep -v '#' | awk '/=/ {print $1}')
echo "[INFO] Environment file loaded"
fi
export OS_NAME=`cat /etc/os-release | grep "^NAME=" | sed 's/NAME=//g' | sed 's/"//g'`
export OS_NAME=${OS_NAME,,} # LOWERCASE
export CWD=$(pwd)
# Initialize
## Detect current package manager
command_exists pacman && export PM=pacman
if ! [[ -z "${PM}" ]]; then
echo "[INFO] Package manager set to : $PM"
else
echo '[ERROR] No package manager found. Aborting...' >&2
fi
find ./scripts -type f -iname "*.sh" -exec chmod +x {} \;
# Install and configure functionality
./scripts/tools/neovim/install.sh
./scripts/tools/rofi/install.sh
./scripts/tools/alacritty/install.sh
./scripts/tools/tmux/install.sh
./scripts/tools/picom/install.sh
./scripts/window_manager/awesome/install.sh
./scripts/window_manager/i3/install.sh
./scripts/tools/fonts/install.sh