#!/bin/bash
nbfic=$(trash-list | wc -l)

if [ $nbfic -eq 0 ]
  then
    notify-send --icon=$HOME/.icons/user-trash-empty48.png " No files found" "In the Recycle Bin" &
  else
    if [ $nbfic -eq 1 ]
      then
        File="File"
      else
        File="Files"
    fi
    notify-send --icon=$HOME/.icons/user-trash-full48.png "           $nbfic $File found" "Click to manage the Recycle Bin" &
fi

exit 0