Initial commit

This commit is contained in:
2026-07-02 15:56:21 +02:00
commit 4529a3c472
92 changed files with 13593 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# Deploy display colour profiles (ICC) to ~/.local/share/icc/.
# Monitor calibration; the compositor / colord matches them to a display.
found=0
for icc in "$REPO_ROOT/03-user/colorprofiles"/*.icc; do
[ -e "$icc" ] || continue # no matches -> skip (glob left literal)
install -Dm644 "$icc" "$HOME/.local/share/icc/$(basename "$icc")" && info "icc: $(basename "$icc")"
found=1
done
[ "$found" = 1 ] || echo " no colour profiles in 03-user/colorprofiles"