Replies: 2 comments 2 replies
-
double commander uses the same plugin api as total commander, unfortunately it doesnt provide the conventional ability to touch things like the context menu. but you can add additional actions to the context menu using internal file associations. keep in mind that due to lack of free time, cant check whether the following will work a quick google search turned up this page with available dropbox commands so eg: more info: |
Beta Was this translation helpful? Give feedback.
-
if you enter
with DC only , you can access the clipboard using lua, but this method will work for additional buttons on the toolbar, but not in the context menu if you only need to change the clipboard, then you don't need a terminal #!/bin/bash
file=$1
link=`dropbox sharelink "$file"`
if [ -n "$link" ]; then
echo "$link" | xsel -b
notify-send -i edit-copy Dropbox "$link"
else
notify-send -i edit-copy Dropbox "Failed to get link."
fi and in the command field, specify the full path to the script (the first button from the input field), and in the parameters field, enter only start path can be left blank, unless you need to forcefully specify a directory |
Beta Was this translation helpful? Give feedback.
-
Is there any plugin or action or whatever that could work in conjunction with the official desktop app in Ubuntu/Mint to provide a simple context menu item that lets the user copy the Dropbox link to the selected file/folder? That's all I need and apparently the Cloud plugin by @ivanenko is way too obscure in regard to its usage.
There is a Cinnamon -> Nemo plugin that does that and it's the only thing that makes me still use it when necessary. I'd like to eliminate that "dependency".
Beta Was this translation helpful? Give feedback.
All reactions