diff options
author | 2014-03-24 15:47:48 +0000 | |
---|---|---|
committer | 2014-03-24 15:47:48 +0000 | |
commit | b35c73761ab18cbbc9013ae5e783b250b76c64f4 (patch) | |
tree | ca7c92ed767da98716178fb8e486e2f3ea9acec8 /doc | |
parent | 2c6d3f2dc927b8b48a1d58301245574517eb0c37 (diff) |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tips/file_manager_integration.mdwn | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/tips/file_manager_integration.mdwn b/doc/tips/file_manager_integration.mdwn index 18210b8ee..73705d7fb 100644 --- a/doc/tips/file_manager_integration.mdwn +++ b/doc/tips/file_manager_integration.mdwn @@ -13,6 +13,30 @@ action from the menu. This is set up by making simple scripts in `~/.local/share/nautilus/scripts`, with names like "git-annex get" +## KDE (Dolphin/Konqueror) + +Create a file `~/.kde4/share/kde4/services/ServiceMenus/git-annex.desktop` with the following contents: + + [Desktop Entry] + Type=Service + ServiceTypes=all/allfiles + MimeType=all/all; + Actions=GitAnnexGet;GitAnnexDrop; + X-KDE-Priority=TopLevel + X-KDE-Submenu=Git-Annex + X-KDE-Icon=git-annex + X-KDE-ServiceTypes=KonqPopupMenu/Plugin + + [Desktop Action GitAnnexGet] + Name=Get + Icon=git-annex + Exec=git-annex get --notify-start --notify-finish %U + + [Desktop Action GitAnnexDrop] + Name=Drop + Icon=git-annex + Exec=git-annex drop --notify-start --notify-finish %U + ## your file manager here Edit this page and add instructions! |