Remove default shell.qml in activation to enable named config detection

This commit is contained in:
Don Williams
2025-11-30 18:19:07 -05:00
parent 61025d3824
commit 305a5a5916

View File

@@ -19,5 +19,11 @@ in
rm -rf "$DEST"
cp -R "$SRC" "$DEST"
chmod -R u+rwX "$DEST"
# Remove default shell.qml if it exists (prevents named config detection)
# Quickshell disables subdirectory detection if ~/.config/quickshell/shell.qml exists
if [ -f "$HOME/.config/quickshell/shell.qml" ]; then
rm -f "$HOME/.config/quickshell/shell.qml"
fi
'';
}