From f0560480b7c6cc064646b081f5bf38a7c7c90c24 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 9 Nov 2021 21:11:18 -0800 Subject: [PATCH] Configure GNOME --- README.md | 3 +++ dotenv.sh | 3 ++- scripts/configure-gnome.sh | 14 ++++++++++++++ scripts/install-arch.sh | 5 ++++- 4 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 README.md create mode 100644 scripts/configure-gnome.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..ef07dcb --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +``` +git clone https://github.com/YourWishes/dotenv && cd dotenv && chmod +x ./dotenv.sh && ./dotenv.sh +``` \ No newline at end of file diff --git a/dotenv.sh b/dotenv.sh index 26765cf..53c1e9c 100644 --- a/dotenv.sh +++ b/dotenv.sh @@ -14,4 +14,5 @@ if [ -f "/etc/arch-release" ]; then ./scripts/install-arch.sh fi -./scripts/install-node.sh \ No newline at end of file +./scripts/install-node.sh +source ~/.nvm/nvm.sh \ No newline at end of file diff --git a/scripts/configure-gnome.sh b/scripts/configure-gnome.sh new file mode 100644 index 0000000..3246934 --- /dev/null +++ b/scripts/configure-gnome.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Gnome Extensions +sudo pacman -S gnome-shell-extensions + +# Flat Remix Theme +git clone https://github.com/daniruiz/Flat-Remix-GTK +sudo cp ./Flat-Remix-GTK/themes/* /usr/share/themes + +# Iosevka SS09 Variant +sudo pacman -S ttc-iosevka-ss09 + +# Set theme +gsettings set org.gnome.desktop.interface gtk-theme "Flat-Remix-GTK-Violet-Dark-Solid" \ No newline at end of file diff --git a/scripts/install-arch.sh b/scripts/install-arch.sh index 086b938..0b71c71 100644 --- a/scripts/install-arch.sh +++ b/scripts/install-arch.sh @@ -4,4 +4,7 @@ sudo pacman -Syuu # Install -sudo pacman -S vim code unrar base-devel vlc firefox cmake -q --noconfirm \ No newline at end of file +sudo pacman -S vim code unrar base-devel vlc firefox cmake -q --noconfirm + +# Configure GNOME +./configure-gnome.sh \ No newline at end of file