-
Notifications
You must be signed in to change notification settings - Fork 1
/
remove_exif_data.nemo_action
41 lines (32 loc) · 1.78 KB
/
remove_exif_data.nemo_action
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
[Nemo Action]
# Standard tokens that can be used in the Name, Comment (tooltip) and Exec fields:
#
# The name to show in the menu, locale supported with standard desktop spec.
Name=Remove exif data
Name[fr]=Supprimer les données exif
# Tool tip, locale supported (Appears in the status bar)
Comment=Use exiftool to remove exif data from image (original is saved as "_original")
Comment[fr]=Utilise exiftool pour supprimer les données exif (une copie du fichier original est enregistrée avec "_original" à la fin)
# %U - insert URI list of selection
# %F - insert path list of selection
# %P - insert path of parent (current) directory
# %f or %N (deprecated) - insert display name of first selected file
# %p - insert display name of parent directory
# %D - insert device path of file (i.e. /dev/sdb1)
EscapeSpaces=true
; Exec=<scripts/bash_action.rb "filename=\"{}\"; out=\"${filename%.*}.gif\"; rm -f \"$out\"; ffmpeg -i \"$filename\" \"$out\"" %F >
Exec=exiftool -all= %F
# Icon name to use in the menu - must be a theme icon name
Icon-Name=system-run
# What type selection: [s]ingle, [m]ultiple, any, notnone, none (background click), or
# a number representing how many files must be selected to display.
Selection=notnone
# What mime-types to display on - this is an array, end with a semicolon
# **** EITHER EXTENSIONS OR MIMETYPES IS REQUIRED *****
Mimetypes=image/*;
# Dependencies - program executables required for this action to work. Nemo will
# Search in the path for these program(s) and not display the action if any are missing.
# You can also supply an absolute path to a file (i.e. /usr/lib/gvfs/gvfsd-archive) to check
# instead of or in addition to an executable in the path.
# This is an array, separate entries with semi-colon, and terminate with a semicolon.
Dependencies=exiftool;