mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env -S bash
|
|
set -euo pipefail
|
|
|
|
# QML Formatter Script
|
|
|
|
# Suppress Qt debug logging from qmlformat
|
|
export QT_LOGGING_RULES="qt.qmldom.*=false"
|
|
|
|
# Find qmlformat binary
|
|
QMLFORMAT=""
|
|
for path in "/usr/lib64/qt6/bin/qmlformat" "/usr/lib/qt6/bin/qmlformat"; do
|
|
if [ -x "$path" ]; then
|
|
QMLFORMAT="$path"
|
|
break
|
|
fi
|
|
done
|
|
|
|
# Fallback to PATH
|
|
if [ -z "$QMLFORMAT" ] && command -v qmlformat &>/dev/null; then
|
|
QMLFORMAT="qmlformat"
|
|
fi
|
|
|
|
if [ -z "$QMLFORMAT" ]; then
|
|
echo "No 'qmlformat' found in standard locations or PATH." >&2
|
|
echo "To proceed, install it via 'qt6-tools', 'qt6-declarative-tools' or 'qt6-qtdeclarative-devel'" >&2
|
|
exit 1
|
|
fi
|
|
|
|
format_file() {
|
|
"${QMLFORMAT}" -w 2 -W 360 -S --semicolon-rule always -i "$1" || { echo "Failed: $1" >&2; return 1; }
|
|
}
|
|
|
|
export -f format_file
|
|
export QMLFORMAT
|
|
|
|
# Find all .qml files
|
|
mapfile -t all_files < <(find "${1:-.}" -name "*.qml" -type f)
|
|
[ ${#all_files[@]} -eq 0 ] && { echo "No QML files found"; exit 0; }
|
|
|
|
echo "Formatting ${#all_files[@]} files..."
|
|
printf '%s\0' "${all_files[@]}" | \
|
|
xargs -0 -P "${QMLFMT_JOBS:-$(nproc)}" -I {} bash -c 'format_file "$@"' _ {} \
|
|
&& echo "Done" || { echo "Errors occurred" >&2; exit 1; }
|