diff options
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rwxr-xr-x | copy.sh | 8 |
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ec49055..66b1b624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## v2.3.26 +## Added: + - `qs-hyprview` an alternative to quickshell `overview` + - `CTRL-TAB` to activate + - Has search filter + - Optional layouts available + - Edit system keybinds to change the layout + ## Fixed: - Some animation bezier values out-of-range @@ -662,13 +662,19 @@ if command -v qs >/dev/null 2>&1; then esac fi - # Ensure overview subdirectory exists and is up to date + # Ensure overview and qs-hyprview subdirectories exist DIRPATH_OVERVIEW="$DIRPATH_QS/overview" if [ ! -d "$DIRPATH_OVERVIEW" ] && [ -d "$DOTFILES_DIR/config/quickshell/overview" ]; then echo "${INFO} - Copying quickshell overview config..." 2>&1 | tee -a "$LOG" cp -r "$DOTFILES_DIR/config/quickshell/overview" "$DIRPATH_QS/" 2>&1 | tee -a "$LOG" echo "${OK} - Quickshell overview config copied successfully" 2>&1 | tee -a "$LOG" fi + DIRPATH_QS_HYPRVIEW="$DIRPATH_QS/qs-hyprview" + if [ ! -d "$DIRPATH_QS_HYPRVIEW" ] && [ -d "$DOTFILES_DIR/config/quickshell/qs-hyprview" ]; then + echo "${INFO} - Copying quickshell qs-hyprview config..." 2>&1 | tee -a "$LOG" + cp -r "$DOTFILES_DIR/config/quickshell/qs-hyprview" "$DIRPATH_QS/" 2>&1 | tee -a "$LOG" + echo "${OK} - Quickshell qs-hyprview config copied successfully" 2>&1 | tee -a "$LOG" + fi # Check for old quickshell startup commands and update them HYPR_STARTUP="${XDG_CONFIG_HOME:-$HOME/.config}/hypr/configs/Startup_Apps.conf" |
