1)
"Install Dropbox via command line"
Quote:
32-bit:
Code:
cd ~ && wget -O - "http://www.dropbox.com/download?plat=lnx.x86" | tar xzf -
64-bit:
Code:
cd ~ && wget -O - "http://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
|
2) Download and install thunar-dropbox from
http://softwarebakery.com/maato/thunar-dropbox.html
You will need to install build tools (I'm not sure, but I think that besides what comes already in Fedora we need only
gcc) and
Thunar-devel and follow the (very simple) instructions at the softwarebakery.com link above.
3) To start Dropbox automatically at login, open "Settings > Session and Startup" from the Xfce menu, tab "Application Autostart", click on "Add" and add something like:
Name: Dropbox
Description: On-line file storage and sharing
Command: <browse to ~/.dropbox-dist/dropboxd>
4) If you don't want to start Dropbox automatically and rather just launch it eventually from the menu, I recommend to link dropboxd to $PATH
Code:
cd ~/bin
ln -s ../.dropbox-dist/dropboxd
and then create ~/.local/share/applications/dropbox.desktop with, for instance, this content:
Code:
[Desktop Entry]
Version=1.0
Name=Dropbox
GenericName=File storage and sharing
Comment=On-line-file storage and sharing
Exec=dropboxd
Icon=dropbox
Type=Application
Terminal=false
Categories=Network;
5) Add "Send To" Thunar actions with the following files:
a. ~/.local/share/Thunar/sendto/dropbox_folder.desktop
Quote:
[Desktop Entry]
Type=Application
Version=1.0
Exec=cp -dr %F /home/your_username_here/Dropbox/%F
Icon=dropbox
Name=Dropbox
|
b. ~/.local/share/Thunar/sendto/dropbox_public_folder.desktop
Quote:
[Desktop Entry]
Type=Application
Version=1.0
Exec=cp -dr %F /home/your_username_here/Dropbox/Public/%F
Icon=dropbox
Name=Dropbox Public
|
Note: if your icon theme, like the Fedora default icon theme, doesn't have a "dropbox" icon, copy it from ~/.dropbox-dist/icons to ~/.icons