From 160f47fc5a0f206dae885ca541b3f3312189ab35 Mon Sep 17 00:00:00 2001 From: Ash141-trojan Date: Tue, 28 Jul 2026 09:57:30 +0000 Subject: [PATCH 1/2] script: use correct wallpaper name The script tries to copy non-existent wallpaper during installation , causing error and aborting the install. cp: cannot stat 'bitpunk-theme/wallpapers/wallpaper-bitpunk.jpg': No such file or directory This was introduced originally back in commit ff2a00e as the intended wallpaper was renamed without updating the harcoded value in script Use the correct wallpaper name so the cp succeds. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 0b11933..b5830e9 100755 --- a/install.sh +++ b/install.sh @@ -470,7 +470,7 @@ install_theme() { # Wallpaper print_step "Installing wallpaper..." - cp "$SCRIPT_DIR/wallpapers/wallpaper-bitpunk.jpg" ~/.config/conky/ + cp "$SCRIPT_DIR/wallpapers/bitpunk-cipher.jpg" ~/.config/conky/ print_success "Wallpaper installed" # Conky (with sensor substitution) From 6e5218175ab12c05ef1666e0017cd09bb7e510b7 Mon Sep 17 00:00:00 2001 From: Ash141-trojan Date: Tue, 28 Jul 2026 10:25:54 +0000 Subject: [PATCH 2/2] script: immediately apply copied wallpaper Apply the wallpaper after it's been copied This requires a shell restart to take place --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index b5830e9..c4a627c 100755 --- a/install.sh +++ b/install.sh @@ -471,7 +471,8 @@ install_theme() { # Wallpaper print_step "Installing wallpaper..." cp "$SCRIPT_DIR/wallpapers/bitpunk-cipher.jpg" ~/.config/conky/ - print_success "Wallpaper installed" + plasma-apply-wallpaperimage "$SCRIPT_DIR/wallpapers/bitpunk-cipher.jpg" + print_success "Wallpaper applied , restart shell for changes to take place" # Conky (with sensor substitution) print_step "Installing conky config (with detected sensors)..."