How to disable "Extraction completed successfully" dialog in Nautilus?

In Ubuntu 16.10, every time I extract a file, Nautilus displays the dialog "Extraction completed successfully".

nautilus display dialog[1]

How can I make Nautilus finish extraction silently (like it did in 16.04)?


Make a wrapper and remove the --notify param:

sudo mv /usr/bin/file-roller /usr/bin/file-roller_orig
sudo vi /usr/bin/file-roller

Enter the following:

#!/bin/bash
p1=$1
p2=$2
p3=$3
p4=$4
p5=$5
p6=$6
if [[ $p2 == *"notify"* ]]; then
        p2=""
fi
/usr/bin/file-roller_orig $p1 $p2 $p3 $p4 $p5 $p6

Then give the file execute permission:

sudo chmod +x /usr/bin/file-roller