From 95351c73c9c29ba04d99d06482700c9fd9381b76 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 5 Jun 2024 13:01:50 +0900 Subject: [PATCH 1/9] removed bookmarks from gtk-3.0 directory --- assets/gtk-3.0/bookmarks | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 assets/gtk-3.0/bookmarks diff --git a/assets/gtk-3.0/bookmarks b/assets/gtk-3.0/bookmarks deleted file mode 100644 index 6178222..0000000 --- a/assets/gtk-3.0/bookmarks +++ /dev/null @@ -1,8 +0,0 @@ -file:///home/ja/Documents -file:///home/ja/Downloads -file:///home/ja/Pictures -file:///home/ja/Videos -file:///home/ja/00shared-drives/shared-1TB -file:///home/ja/00shared-drives/shared-500G -file:///home/ja/00shared-drives/shared-500G/000-git-packages -file:///home/ja/00shared-drives/shared-500G/Music-shared From c40b327514be48faaa58d897afad5d98d118d2c0 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 5 Jun 2024 13:25:13 +0900 Subject: [PATCH 2/9] added keybinds link on readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4b8226b..a8a3c7f 100644 --- a/README.md +++ b/README.md @@ -191,6 +191,9 @@ source ~/.zshrc - for the install part, kindly open issue on this repo - for the Pre-configured Hyprland dots / configuration, submit issue [`here`](https://github.com/JaKooLit/Hyprland-Dots/issues) +#### ⌨ Keybinds +- Keybinds [`CLICK`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Keybinds) + #### 🔧 Proper way to re-installing a particular script from install-scripts folder - CD into Ubuntu-Hyprland Folder and then ran the below command. - i.e. `./install-scripts/gtk-themes` - For reinstall GTK Themes. From e6d34e201077c0c6f50fba97c3915331ac264e45 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 5 Jun 2024 13:54:20 +0900 Subject: [PATCH 3/9] added make dependencies to install --- install-scripts/00-dependencies.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install-scripts/00-dependencies.sh b/install-scripts/00-dependencies.sh index 9c93c15..225d851 100755 --- a/install-scripts/00-dependencies.sh +++ b/install-scripts/00-dependencies.sh @@ -77,6 +77,7 @@ dependencies=( libxkbregistry-dev libxml2-dev libxxhash-dev + make meson ninja-build openssl From 6af0336b9ceb919df1aaeccfeaa294e8096be991 Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Wed, 5 Jun 2024 14:53:13 +0900 Subject: [PATCH 4/9] Update swappy.sh --- install-scripts/swappy.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install-scripts/swappy.sh b/install-scripts/swappy.sh index 4356812..1054b5c 100755 --- a/install-scripts/swappy.sh +++ b/install-scripts/swappy.sh @@ -5,6 +5,7 @@ swappy=( liblocale-msgfmt-perl gettext +libgtk-3-dev ) ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ## From b838c320a8248d1c8895e378e69e608e88f955ed Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Wed, 5 Jun 2024 14:56:40 +0900 Subject: [PATCH 5/9] Update swappy.sh --- install-scripts/swappy.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/install-scripts/swappy.sh b/install-scripts/swappy.sh index 1054b5c..76c9947 100755 --- a/install-scripts/swappy.sh +++ b/install-scripts/swappy.sh @@ -32,7 +32,15 @@ for PKG1 in "${swappy[@]}"; do fi done -## +# Force reinstall above as seems its giving issue as swappy cant be build +for PKG1 in "${swappy[@]}"; do + sudo apt --reinstall install "$PKG1" 2>&1 | tee -a "$LOG" + if [ $? -ne 0 ]; then + echo -e "\e[1A\e[K${ERROR} - $PKG1 Package installation failed, Please check the installation logs" + exit 1 + fi +done + printf "${NOTE} Installing swappy from source...\n" # Check if folder exists and remove it From b0c0902e04ad5c3ab207eaa8f6b9d47e12ae6c37 Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Wed, 5 Jun 2024 15:00:02 +0900 Subject: [PATCH 6/9] Update swappy.sh --- install-scripts/swappy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-scripts/swappy.sh b/install-scripts/swappy.sh index 76c9947..2b8665b 100755 --- a/install-scripts/swappy.sh +++ b/install-scripts/swappy.sh @@ -34,9 +34,9 @@ done # Force reinstall above as seems its giving issue as swappy cant be build for PKG1 in "${swappy[@]}"; do - sudo apt --reinstall install "$PKG1" 2>&1 | tee -a "$LOG" + sudo apt-get --reinstall install "$PKG1" 2>&1 | tee -a "$LOG" if [ $? -ne 0 ]; then - echo -e "\e[1A\e[K${ERROR} - $PKG1 Package installation failed, Please check the installation logs" + echo -e "\e[1A\e[K${ERROR} - $PKG1 Package re-installation failed, Please check the installation logs" exit 1 fi done From 65ef8f18a9ee7b24cbceb0beb5e164e559c61c99 Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Wed, 5 Jun 2024 17:21:44 +0900 Subject: [PATCH 7/9] Update rofi-wayland.sh --- install-scripts/rofi-wayland.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install-scripts/rofi-wayland.sh b/install-scripts/rofi-wayland.sh index 5f3372e..34f9a92 100755 --- a/install-scripts/rofi-wayland.sh +++ b/install-scripts/rofi-wayland.sh @@ -9,6 +9,9 @@ rofi=( doxygen cppcheck ohcount + libmpdclient-dev + libnl-3-dev + libasound2-dev ) ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ## @@ -50,8 +53,6 @@ printf "\n\n" # Clone and build rofi - wayland printf "${NOTE} Installing rofi-wayland...\n" -printf "${NOTE} Installing rofi-wayland\n" - # Check if rofi folder exists if [ -d "rofi" ]; then printf "${NOTE} rofi folder exists. Pulling latest changes...\n" @@ -68,7 +69,7 @@ else fi # Proceed with the installation steps -if meson setup build && ninja -C build; then +if meson setup build && ninja -C build ; then if sudo ninja -C build install 2>&1 | tee -a "$MLOG"; then printf "${OK} rofi-wayland installed successfully.\n" 2>&1 | tee -a "$MLOG" else @@ -83,4 +84,3 @@ mv "$MLOG" ../Install-Logs/ || true cd .. || exit 1 clear - From 6ab72daa323ca1296f5f32dfbc2ec6501f83b284 Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Wed, 5 Jun 2024 17:37:51 +0900 Subject: [PATCH 8/9] Update swww.sh --- install-scripts/swww.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/install-scripts/swww.sh b/install-scripts/swww.sh index c6d869b..b47dc96 100755 --- a/install-scripts/swww.sh +++ b/install-scripts/swww.sh @@ -5,6 +5,7 @@ swww=( cargo liblz4-dev +rustc ) #specific branch or release @@ -35,6 +36,14 @@ for PKG1 in "${swww[@]}"; do fi done +printf "${NOTE} Force installing packages...\n" + for FORCE in "${swww[@]}"; do + sudo apt-get --reinstall install -y "$FORCE" 2>&1 | tee -a "$LOG" + [ $? -ne 0 ] && { echo -e "\e[1A\e[K${ERROR} - $FORCE Package installation failed, Please check the installation logs"; exit 1; } + done + +printf "\n\n" + printf "${NOTE} Installing swww\n" # Check if swww folder exists @@ -44,7 +53,7 @@ if [ -d "swww" ]; then git pull origin main 2>&1 | tee -a "$MLOG" else printf "${NOTE} Cloning swww repository...\n" - if git clone --recursive -b $swww_tag https://github.com/Horus645/swww.git; then + if git clone --recursive https://github.com/Horus645/swww.git; then cd swww || exit 1 else echo -e "${ERROR} Download failed for swww" 2>&1 | tee -a "$LOG" @@ -52,14 +61,6 @@ else fi fi -# install new rust -# Define environment variables for non-interactive installation -export RUSTUP_INIT_SKIP_PATH_CHECK=yes -export RUSTUP_INIT_SKIP_CONFIRMATION=yes - -# Download and execute the Rust installer script, automatically answering "yes" to all prompts -curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path 2>&1 | tee -a "$LOG" || true - # Proceed with the rest of the installation steps source "$HOME/.cargo/env" || true From 33270a6fb4e4a50930677ebd5cc1a07217fc90da Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 5 Jun 2024 19:43:48 +0900 Subject: [PATCH 9/9] updated for v2.2.13-1 hotfix dotfiles --- install-scripts/dotfiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-scripts/dotfiles.sh b/install-scripts/dotfiles.sh index 4347def..a1ff5f8 100755 --- a/install-scripts/dotfiles.sh +++ b/install-scripts/dotfiles.sh @@ -3,7 +3,7 @@ # Hyprland-Dots to download a specific release # # Define the specific release version to download -specific_version="v2.2.13" +specific_version="v2.2.13-1" ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##