Xfce Wiki

Sub domains
 

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
xfce:thunar:custom-actions [2018/08/03 23:03] – [Losslessly Rotating JPEGs] alexxconsxfce:thunar:custom-actions [2018/08/03 23:08] alexxcons
Line 219: Line 219:
  
 **Note:** You will need ''subrnm'' script. Get it [[http://pastebin.com/DA8jwHz3|here]]. You'll also need ''zenity'' package. **Note:** You will need ''subrnm'' script. Get it [[http://pastebin.com/DA8jwHz3|here]]. You'll also need ''zenity'' package.
 +
 +==== Move files into a new folder ====
 +    * Name: **Move into new folder**
 +    * Description: Select any file. A dialog will popup in which you can write the nam of the folder to create. Files will be moved there.
 +    * Command: NEW_FOLDER=$(/usr/bin/zenity --entry --title "Move into new folder" --text "Please enter a name for the new folder"); mkdir $NEW_FOLDER; mv %F $NEW_FOLDER 
 +    * File pattern: *
 +    * Appears if selection contains: All
 +
 +**Note:** You'll will need the ''zenity'' package.