... Or with xsel (already into MX)xali wrote: Fri Jul 19, 2019 10:31 am about copying current path, for meworks ok. You just have to tick on appearance conditions all choices and not only text files. file pattern = *Code: Select all
echo -n %f | xclip -selection "clipboard"
Code: Select all
echo -n %f | xsel -b
I like this one too, but does not work if the name starts with a space.manyroads wrote: Sat Feb 23, 2019 9:42 amI really like this one and made two out of it for my digital text libraries...Brigs wrote: Sat Feb 23, 2019 9:11 am Wow... nice tutor Thunar action here. i'll give share of mine action
Slug Filename : Rename the currently selected files, making the filenames lower-case & replacing spaces with dashesCode: Select all
for file in %N; do mv "$file" "$(echo "$file" | tr -s ' ' | tr ' A-Z' '-a-z' | tr -s '-' | tr -c '[:alnum:][:cntrl:].' '-')"; done