From e298aeb2c0ed5d61c71f4afb37441975eed47495 Mon Sep 17 00:00:00 2001 From: junikimm717 Date: Fri, 15 Apr 2022 18:41:55 -0400 Subject: [PATCH] gnome arch --- gnome_arch.sh | 131 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100755 gnome_arch.sh diff --git a/gnome_arch.sh b/gnome_arch.sh new file mode 100755 index 0000000..f768016 --- /dev/null +++ b/gnome_arch.sh @@ -0,0 +1,131 @@ +#!/bin/sh + +DIR="$(realpath "$(dirname "$0")")" + +# script must start at home directory +cd "$HOME" || exit 1; + +bootstrap_paru () { + mkdir -p "$HOME/repos" + cd "$HOME/repos" || exit 1 + git clone https://aur.archlinux.org/paru-bin.git + cd paru-bin || exit 1 + makepkg --noconfirm -si || exit 2 + cd "$HOME" || exit 1 +} + +paru_exists() { + if ! command -V paru; then + echo "Paru doesn't exist. Installing it" + bootstrap_paru + fi +} + +usertest() { + if test "$(id -u)" -eq 0; then + echo "You cannot run this script as root."; + exit 1; + fi + + if ! (type sudo 2>&1) > /dev/null; then + echo "sudo is not installed."; + exit 1 + fi + + sudo -S pacman -Syu + sudo -S pacman --noconfirm -S base-devel +} + +dev() { + echo "Developer tools..." + sudo -S pacman --noconfirm -S neovim nodejs +} + + +sysinfo() { + echo "Dylan Araps scripts" + cd "$HOME" || exit 1; + mkdir -p repos + git clone https://github.com/dylanaraps/pfetch "$HOME/repos/pfetch" + git clone https://github.com/dylanaraps/neofetch "$HOME/repos/neofetch" + git clone https://github.com/dylanaraps/fff "$HOME/repos/fff" + + cd "$HOME/repos/pfetch" || exit 1; + sudo -S make install || exit 2; + cd "$HOME" || exit 1; + + cd "$HOME/repos/neofetch" || exit 1; + sudo -S make install || exit 2; + cd "$HOME" || exit 1; + + cd "$HOME/repos/fff" || exit 1; + sudo -S make install || exit 2; + cd "$HOME" || exit 1; +} + +shell() { + sudo -S pacman --noconfirm -S zsh tmux starship +} + +browsers() { + paru --noconfirm -S brave-bin +} + +torbrowser() { + sudo -S pacman --noconfirm -S torbrowser-launcher +} + +meetings() { + paru_exists + paru --noconfirm -S skypeforlinux-stable-bin zoom + # install mt + sudo -S curl -LJ https://github.com/junikimm717/mt/releases/download/33627ab/mt -o /usr/local/bin/mt + sudo -S chmod +x /usr/local/bin/mt +} + +# neovim must be installed. +plugins() { + # install vim-plug, oh-my-zsh, and zsh-syntax-highlighting + sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ + https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' + sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" + git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting" +} + +dotfiles() { + echo "Adding vim and zsh configs" + if ! test -d "$DIR/dotfiles"; then + echo "$DIR/dotfiles folder not found."; + exit 1; + fi + mkdir -p "$HOME/.config/nvim" + cp "$DIR/dotfiles/.zshrc" "$HOME/.zshrc" + cp "$DIR/dotfiles/init.vim" "$HOME/.config/nvim/init.vim" + nvim --headless +PlugInstall +qa + mkdir -p "$HOME/.config/kitty" + cp "$DIR"/dotfiles/kitty.conf "$HOME/.config/kitty/" + cp "$DIR"/dotfiles/tmux.conf "$HOME/.tmux.conf" +} + +popshell() { + mkdir -p "$HOME/repos" + sudo pacman -S --noconfirm typescript + git clone https://github.com/pop-os/shell.git "$HOME/repos/shell" + cd "$HOME/repos/shell" || exit 1 + (make && make install) || exit 1 + cd "$HOME" || exit 1 +} + +(usertest && bootstrap_paru && dev && sysinfo && shell && plugins && dotfiles && +popshell && browsers && meetings) || exit 1 + +cat <