dem Menü "Kopieren nach" den Eintrag "Download" hinzufügen
#!/bin/bashif [[ -x /usr/bin/gksu || -x /opt/gnome/bin/gksu ]]; then sudotool="gksu -u root"elif [[ -x /usr/bin/gnomesu || -x /opt/gnome/bin/gnomesu ]]; then sudotool=gnomesufidestination=$(zenity --file-selection --directory --title "Zielverzeichnis?")echo $CAJA_SCRIPT_SELECTED_URIS > ~/.cache/temp_copy_listfor file in $(cat ~/.cache/temp_copy_list); do \ file_name=$(echo $file | sed -e 's/file:\/\///g' -e 's/\%20/\ /g') short_file_name=$(echo $file | sed -e 's#.*/##g' -e 's/\%20/\ /g') if [[ -w "$destination" && -a "$destination"/$short_file_name ]]; then \ confirm=$(zenity zenity --question --text "Datei "$destination"/$short_file_name überschreiben?"; echo $?) if [[ $confirm == 0 ]]; then cp -r "$file_name" "$destination" if (( $? != 0 )); then zenity --info --text "Fehler beim Kopieren." --title "Achtung!" fi fi elif [[ -w "$destination" ]]; then \ cp -r "$file_name" "$destination" if (( $? != 0 )); then zenity --info --text "Fehler beim Kopieren." --title "Achtung!" fi elif [[ -a "$destination" && $sudotool != "" ]]; then $sudotool "cp -r '$file_name' "$destination"" else zenity --info --title "Achtung!" --text ""$destination"\nFehler beim Kopieren." fi; \donerm -f ~/.cache/temp_copy_list
/home/<dein_benutzername>/.config/caja/scripts
Code: [Auswählen]exec cp -a "$@" ~/Downloads
exec cp -a "$@" ~/Downloads