Sudo wrapper and notifications
- new option
--notification
to show logs withzenity --notification
- new
sudo
wrapper:- ask only once the user password (usefull with Tails)
- prompt the user password with
read -r
orzenity --password
until the correct one is provided - simplification of the code (
sudo sh -c "command 1; command 2;
->_sudo command 1; _sudo command 2;
)