No "Are you sure you want to delete this file?" message?

One thing I really hate about Ubuntu is how easy it is to accidentally delete files.

Is there any way to show a pop-up confirmation dialog when the Delete key is pressed, before a file is actually moved to the trash?

1

2 Answers

Graphical

Nautilus there is. Right click a file and move it to trash or deleting files.

enter image description here

Command line

The command line add a few aliases in ~/.bashrc

# Command line
nano ~/.bashrc
# Graphical
gedit ~/.bashrc

Add a few aliases and activate noclobber

alias mv='mv -i'
alias cp='cp -i'
alias rm='rm -i'
set -o noclobber # Override >|

No clobber prevents you from redirecting and overwriting to an existing file.

So echo 'add this' > file not over write a file if it exists. You can still append echo 'add this' >> file. You can over ride it by adding a "|" echo 'add this' >| file

Delete key

I do not know any way of over riding the delete key. You may be able to map the delete key to a script, but, as I would assume you would use the delete key for other tasks, you would then map a key combination to perhaps a zenity script.

Perhaps someone else will add a way to over ride the delete key.

3

The lack of an option for this is a result of the Gnome philosophy of striving for simplicity at the expense of easy customisation.

I would recommend switching to another file manager which has this option, like Dolphin or Thunar.

enter image description here

The default file manager is also difficult to configure in Gnome, but there are instructions to do so on the Ubuntu wiki.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like