-
Notifications
You must be signed in to change notification settings - Fork 6
Home
Welcome to the rox-filer wiki!
On Linux Mint, To compile rox using `ROX-Filer/AppRun --compile', dependencies are
autoconf,
libc6-dev,
libsm-dev,
libgtk2.0-dev,
libxml2-dev.
Install them by use of Synaptic Package Manager.
If your linux has Synaptic Package Manager, probably they are same. Even hasn’t these names could be helpful. It Probably different but similar on your linux’s package manager.
For Arch linux, I’ve added PKGBUILD. Just use it. https://github.com/jun7/rox-filer/blob/master/PKGBUILD
To use MIME Editor, Thumbs and VideoThumbnail, 0Install is not necessary. Just make `Apps' dir in `~/' and put them.
rox searches following dirs: ~/Apps:/usr/local/apps:/usr/apps
And dependencies are pygtk, rox-lib, shared-mime-info.
To use Thumbs and VideoThumbnail, `Look Inside' and open `AppRun' `Open As Text' and rename the `python' of the first line to `python2'.
Thumbs and Video Thumbnail are here: http://www.kerofin.demon.co.uk/rox/utils.html
Don’t miss Ctrl + [0-1] and [0-1].
Send to is not directory. So if you went to send to directory, put sh file like this:
for arg in "$@"
do
mv "${arg}" ~/foobar/ //(1)
done
-
foobar is directory name
You can make your own Copy & Paste like this:
for arg in "$@"
do
echo "${arg}"
done > ~/Desktop/FileList
cat ~/Desktop/FileList | xargs cp -r -t "$1"
And put these to Sendto directory.
Also:
cat ~/Desktop/FileList | xargs mv -t "$1" cat /dev/null > ~/Desktop/FileList
for arg in "$@"
do
echo "${arg}"
done >> ~/Desktop/FileList
tip: In the SendTo we can use directorys.
for images dirs
cd "$@"
for arg in *
do
if [ ! -e "$arg/.DirIcon" ]; then
ls -v "$arg/" | head -n 1 | xargs -I {} convert -thumbnail 128x128 "$arg/{}" png:"$arg/.DirIcon"
fi
done
this needs convert
cd "$@" for arg in * do rm "$arg/.DirIcon" done