post_install() {
    echo "Parch Dorood autorun entry installed to /etc/xdg/autostart"
}

pre_remove() {
    local file="/etc/xdg/autostart/com.parchlinux.dorood.desktop"
    if [ -f "$file" ]; then
        rm -f "$file"
        echo "Removed autorun entry: $file"
    fi
}
