aboutsummaryrefslogtreecommitdiff
path: root/doc/tips/file_manager_integration.mdwn
blob: 36e7add6841e702a2bc0e99b587b5f9d24312091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
Integrating git-annex and your file manager provides an easy way to select
annexed files to get or drop. The file manager can also be used to undo
changes to file managed by git-annex.

[[!toc]]

## GNOME (nautilus)

Recent git-annex comes with built-in integration for Nautilus.

[[!img assistant/nautilusmenu.png]]

[[!img assistant/downloadnotification.png]]

This is set up by git-annex creating simple scripts in
`~/.local/share/nautilus/scripts`, with names like "git-annex get"

## KDE (Dolphin/Konqueror)

Even more recent git-annex comes with built-in integration with Konqueror.

[[!img assistant/konquerormenu.png]]

This is set up by git-annex creating a 
`$XDG_DATA_HOME/kservices5/ServiceMenus/git-annex.desktop` file.

## Xfce (Thunar)

Xfce uses the Thunar file manager, which can also be easily configured to
allow for custom actions. Just go to the "Configure custom actions..." item
in the "Edit" menu, and create a custom action for get, drop, and undo with the
following commands:

    git-annex drop --notify-start --notify-finish -- %F

for drop, and for get:

    git-annex get --notify-start --notify-finish -- %F
    
and for undo:

    git-annex undo --notify-start --notify-finish -- %F

This gives me the resulting config on disk, in `.config/Thunar/uca.xml`:

    <action>
        <icon>git-annex</icon>
        <name>git-annex get</name>
        <unique-id>1396278104182858-3</unique-id>
        <command>git-annex get --notify-start --notify-finish -- %F</command>
        <description>get the files from a remote git annex repository</description>
        <patterns>*</patterns>
        <directories/>
        <audio-files/>
        <image-files/>
        <other-files/>
        <text-files/>
        <video-files/>
    </action>
    <action>
        <icon>git-annex</icon>
        <name>git-annex drop</name>
        <unique-id>1396278093174843-2</unique-id>
        <command>git-annex drop --notify-start --notify-finish -- %F</command>
        <description>drop the files from the local repository</description>
        <patterns>*</patterns>
        <directories/>
        <audio-files/>
        <image-files/>
        <other-files/>
        <text-files/>
        <video-files/>
    </action>

The complete instructions on how to setup actions is [in the Xfce documentation](http://docs.xfce.org/xfce/thunar/custom-actions).

## OS X (Finder)

For OS X, it is possible to get context menus in Finder. Due to how OS X
deals with symlinks, one needs to operate on folders if using indirect
mode. Direct mode operation has not been tested.

1. Open Automator and create a new Service.
2. Using the Drop down menus in the top create the sentence "Service receives selected folders in Finder.app" to have it work on folders. For direct mode operation it is probably reasonable to select "files or folders".
3. Add a "Run shell script" element and fill in line with the following script:

        #!/usr/bin/bash
        source ~/.bash_profile
        for f in "$@"
        do
            cd "$(dirname "$f")" && git-annex get "$f"
        done

The purpose of the first line is there to get git-annex on to the path. The
reason for the for loop is in case multiple files or folders are marked
when running the context menu command.

Finally save the the workflow under the name for which it should be listed in the context menu.

## your file manager here

Edit this page and add instructions!

## general

If your file manager can run a command on a file, it should be easy to
integrate git-annex with it. A simple script will suffice:

	#!/bin/sh
	git-annex get --notify-start --notify-finish -- "$@"

The --notify-start and --notify-stop options make git-annex display a
desktop notification. This is useful to give the user an indication that
their action took effect. Desktop notifications are currently only
implemented for Linux.