From 54ab2eb59b8c20c4e42844f2278a44aa94f1ea28 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sat, 11 Jul 2026 01:39:20 -0400 Subject: Upd: CHANGELOG and copy.sh to install qs-hyprview Signed-off-by: Don Williams On branch development Your branch is ahead of 'origin/development' by 1 commit. (use "git push" to publish your local commits) Changes to be committed: modified: CHANGELOG.md modified: copy.sh --- copy.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index cd2a3cec..92a8e83c 100755 --- a/copy.sh +++ b/copy.sh @@ -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" -- cgit v1.2.3