#!/bin/bash
set -e

# Rafraîchir Nemo uniquement si disponible
if command -v nemo >/dev/null 2>&1; then
    nemo -q || true
fi

exit 0
