From 367d989c73d64381d58363c31947fc47fb3d22de Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Mon, 4 Sep 2023 20:20:21 +0000 Subject: [PATCH 1/4] Update README.md --- README.md | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 62fa527..97c2f34 100644 --- a/README.md +++ b/README.md @@ -45,21 +45,9 @@ Included is a pywal configuration that changes the color scheme based on a rando To make it easy for you to get started with my dotfiles, here's a list of recommended next steps. ``` -# Create a folder for the Download -mkdir ml4w-dotfiles - -# cd into the new folder -cd ml4w-dotfiles - -# Clone the repository +# Clone the repository from your home directory git clone https://gitlab.com/stephan-raabe/dotfiles.git -# Copy the dotfiles into your home directory -cp -r dotfiles ~/ - -# cd into your your copy -cd ~/dotfiles - # Install or update all required packages and install dotfiles ./1-install.sh @@ -71,6 +59,9 @@ cd ~/dotfiles # Install qtile window manager ./2-install-qtile.sh +# Install dotfiles +./3-install-dotfiles.sh + ``` From e07c148d362cac25f0939289f2ff90c190fad0f8 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Mon, 4 Sep 2023 20:22:20 +0000 Subject: [PATCH 2/4] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 97c2f34..bc0a2b4 100644 --- a/README.md +++ b/README.md @@ -51,11 +51,9 @@ git clone https://gitlab.com/stephan-raabe/dotfiles.git # Install or update all required packages and install dotfiles ./1-install.sh -# Install qtile window manager +# Install hyprland window manager ./2-install-hyprland.sh - # OR/AND - # Install qtile window manager ./2-install-qtile.sh From a5781fdfbb5697dceba3b5e4d02efe44bc8b44a3 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Mon, 4 Sep 2023 20:30:27 +0000 Subject: [PATCH 3/4] Update 1-install.sh --- 1-install.sh | 57 +--------------------------------------------------- 1 file changed, 1 insertion(+), 56 deletions(-) diff --git a/1-install.sh b/1-install.sh index 56ee216..ee1a5b9 100755 --- a/1-install.sh +++ b/1-install.sh @@ -127,63 +127,8 @@ clear # ------------------------------------------------------ echo "" echo "-> Install .bashrc" -while true; do - read -p "Do you want to replace the existing .bashrc file? (Yy/Nn): " yn - case $yn in - [Yy]* ) - rm ~/.bashrc - _installSymLink ~/.bashrc ~/dotfiles/.bashrc ~/.bashrc - echo ".bashrc removed" - break;; - [Nn]* ) - echo "Replacement of .bashrc skipped." - break;; - * ) echo "Please answer yes or no.";; - esac -done -# ------------------------------------------------------ -# Install Theme, Icons and Cursor -# ------------------------------------------------------ -echo "" -echo "-> Install Theme" -while true; do - read -p "Do you want to replace the existing GTK2/GTK3 theme configuration? (Yy/Nn): " yn - case $yn in - [Yy]* ) - if [ -d ~/.config/gtk-3.0 ]; then - rm -r ~/.config/gtk-3.0 - echo "gtk-3.0 removed" - fi - - if [ -f ~/.gtkrc-2.0 ]; then - rm ~/.gtkrc-2.0 - echo ".gtkrc-2.0" - fi - - if [ -f ~/.Xresources ]; then - rm ~/.Xresources - echo ".Xresources removed" - fi - - if [ -d ~/.icons ]; then - rm -r ~/.icons - echo ".icons removed" - fi - - _installSymLink ~/.gtkrc-2.0 ~/dotfiles/.gtkrc-2.0 ~/.gtkrc-2.0 - _installSymLink ~/.config/gtk-3.0 ~/dotfiles/gtk-3.0/ ~/.config/ - _installSymLink ~/.Xresources ~/dotfiles/.Xresources ~/.Xresources - _installSymLink ~/.icons ~/dotfiles/.icons/ ~/ - - echo "Existing theme removed" - break;; - [Nn]* ) - echo "Replacement of theme skipped." - break;; - * ) echo "Please answer yes or no.";; - esac -done +_installSymLink .bashrc ~/.bashrc ~/dotfiles/.bashrc ~/.bashrc # ------------------------------------------------------ # Install custom issue (login prompt) From 899309d61035ce59951c1c61b5abdf055ea20445 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Tue, 5 Sep 2023 04:31:24 +0000 Subject: [PATCH 4/4] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bc0a2b4..4a6b01f 100644 --- a/README.md +++ b/README.md @@ -48,13 +48,15 @@ To make it easy for you to get started with my dotfiles, here's a list of recomm # Clone the repository from your home directory git clone https://gitlab.com/stephan-raabe/dotfiles.git -# Install or update all required packages and install dotfiles +# Change into the new dotfiles folder +cd dotfiles + +# Install all required packages ./1-install.sh # Install hyprland window manager ./2-install-hyprland.sh -# OR/AND -# Install qtile window manager +# OR/AND Install qtile window manager ./2-install-qtile.sh # Install dotfiles