44c88af81f
Gotta do at least something when I don't have the faintest clue about Haskell. :) Learning Haskell is on my agenda, though.
115 lines
3.8 KiB
Markdown
115 lines
3.8 KiB
Markdown
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
|
|
`~/.kde/share/kde4/services/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.
|