diff options
| author | Don Williams <Don.e.williams@gmail.com> | 2026-07-11 01:39:20 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:34 -0700 |
| commit | 54ab2eb59b8c20c4e42844f2278a44aa94f1ea28 (patch) | |
| tree | e128d6b285600be96c03cea1d3fc99029dfee0b9 /copy.sh | |
| parent | e44f3c46c8e3bf0ca74e780375599316fe5f2396 (diff) | |
Upd: CHANGELOG and copy.sh to install qs-hyprview
Signed-off-by: Don Williams <Don.e.williams@gmail.com>
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
Diffstat (limited to 'copy.sh')
| -rwxr-xr-x | copy.sh | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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" |
