diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 23966e1..77ee2ea 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## Changelogs +## 26 May 2024 +- Added fzf for zsh (CTRL R to invoke FZF history) + ## 25 May 2024 - switched to sddm-qt6 theme. Link of which is on readme diff --git a/README.md b/README.md index ccc989f..d2f931d 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ https://github.com/JaKooLit/Hyprland-Dots/assets/85185940/50d53755-0f11-45d6-991 ### 🪧🪧🪧 ANNOUNCEMENT 🪧🪧🪧 -- This Repo does not contain Hyprland Dots or configs! Dotfiles can be checked here [`Hyprland-Dots`](https://github.com/JaKooLit/Hyprland-Dots) . During installation, if you opt to copy installation, it will be downloaded from that centralized repo. +- This Repo does not contain Hyprland Dots or configs! Dotfiles can be checked here [`Hyprland-Dots`](https://github.com/JaKooLit/Hyprland-Dots) . During installation, if you opt to copy pre-configured dots, it will be downloaded from that centralized repo. - Hyprland-Dots use are constantly evolving / improving. you can check CHANGELOGS here [`Hyprland-Dots-Changelogs`](https://github.com/JaKooLit/Hyprland-Dots/wiki/Changelogs) - Since the Hyprland-Dots are evolving, some of the screenshots maybe old - the wallpaper offered to be downloaded towards the end is from this [`REPO`](https://github.com/JaKooLit/Wallpaper-Bank) @@ -80,11 +80,10 @@ https://github.com/JaKooLit/Hyprland-Dots/assets/85185940/50d53755-0f11-45d6-991 #### ✨ Costumize the packages - inside the install-scripts folder, you can edit 02-hypr-pkgs.sh, etc. Care though as the Hyprland Dots might not work properly -- default GTK theme if agreed to be installed is Tokyo night GTK themes (dark and light) + Tokyo night SE icons #### 💫 SDDM and GTK Themes offered - If you opted to install SDDM theme, here's the [`LINK`](https://github.com/JaKooLit/simple-sddm-2) -- If you opted to install GTK Themes, Icons and Cursor offered are Mixed GTK Themes. [`LINK`](https://github.com/JaKooLit/GTK-themes-icons) & Bibata Cursor Modern Ice +- If you opted to install GTK Themes, Icons here's the [`LINK`](https://github.com/JaKooLit/GTK-themes-icons) & Bibata Cursor Modern Ice (assets directory) #### ⚠️ WARNING! If you have GDM already as log-in manager, DO NOT install SDDM - You will likely to encounter issues diff --git a/assets/.zshrc b/assets/.zshrc index 6c417f0..86f2a95 100644 --- a/assets/.zshrc +++ b/assets/.zshrc @@ -21,5 +21,11 @@ source $ZSH/oh-my-zsh.sh # Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos #pokemon-colorscripts --no-title -s -r +# Set-up FZF key bindings (CTRL R for fuzzy history finder) +source <(fzf --zsh) +HISTFILE=~/.zsh_history +HISTSIZE=10000 +SAVEHIST=10000 +setopt appendhistory diff --git a/install-scripts/gtk_themes.sh b/install-scripts/gtk_themes.sh index 77486f7..738710a 100755 --- a/install-scripts/gtk_themes.sh +++ b/install-scripts/gtk_themes.sh @@ -32,11 +32,11 @@ done # Check if the directory exists and delete it if present if [ -d "GTK-themes-icons" ]; then - echo "$NOTE Tokyo Theme GTK themes and Icons folder exist..deleting..." 2>&1 | tee -a "$LOG" + echo "$NOTE GTK themes and Icons folder exist..deleting..." 2>&1 | tee -a "$LOG" rm -rf "GTK-themes-icons" 2>&1 | tee -a "$LOG" fi -echo "$NOTE Cloning Tokyo Theme GTK themes and Icons repository..." 2>&1 | tee -a "$LOG" +echo "$NOTE Cloning GTK themes and Icons repository..." 2>&1 | tee -a "$LOG" if git clone https://github.com/JaKooLit/GTK-themes-icons.git ; then cd GTK-themes-icons chmod +x auto-extract.sh @@ -44,7 +44,7 @@ if git clone https://github.com/JaKooLit/GTK-themes-icons.git ; then cd .. echo "$OK Extracted GTK Themes & Icons to ~/.icons & ~/.themes folders" 2>&1 | tee -a "$LOG" else - echo "$ERROR Download failed for Tokyo Theme GTK themes and Icons.." 2>&1 | tee -a "$LOG" + echo "$ERROR Download failed for GTK themes and Icons.." 2>&1 | tee -a "$LOG" fi tar -xf "assets/Bibata-Modern-Ice.tar.xz" -C ~/.icons 2>&1 | tee -a "$LOG" diff --git a/install-scripts/zsh.sh b/install-scripts/zsh.sh index dc0a665..e626bbb 100755 --- a/install-scripts/zsh.sh +++ b/install-scripts/zsh.sh @@ -3,7 +3,8 @@ # Zsh and Oh my Zsh + Optional Pokemon ColorScripts# zsh=( -zsh +zsh +fzf ) ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##