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