forked from Shinonome/alt-illogical-impulse
Fix quickshell config copy path - Changed from source/quickshell to source/.config/quickshell - Fixes deployment error when quickshell directory doesn't exist at root level
This commit is contained in:
@@ -215,7 +215,7 @@ in
|
|||||||
# Copy quickshell config to enable relative imports
|
# Copy quickshell config to enable relative imports
|
||||||
if [[ ! -d "$HOME/.config/quickshell" ]] || [[ -L "$HOME/.config/quickshell" ]]; then
|
if [[ ! -d "$HOME/.config/quickshell" ]] || [[ -L "$HOME/.config/quickshell" ]]; then
|
||||||
$DRY_RUN_CMD mkdir -p "$HOME/.config"
|
$DRY_RUN_CMD mkdir -p "$HOME/.config"
|
||||||
$DRY_RUN_CMD cp -r "${cfg.source}/quickshell" "$HOME/.config/"
|
$DRY_RUN_CMD cp -r "${cfg.source}/.config/quickshell" "$HOME/.config/"
|
||||||
$DRY_RUN_CMD chmod -R u+w "$HOME/.config/quickshell"
|
$DRY_RUN_CMD chmod -R u+w "$HOME/.config/quickshell"
|
||||||
$DRY_RUN_CMD echo "✅ Quickshell configuration copied successfully"
|
$DRY_RUN_CMD echo "✅ Quickshell configuration copied successfully"
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user