new: Added three items
This commit is contained in:
parent
496c19a4ac
commit
196a62cfa7
3 changed files with 30 additions and 0 deletions
10
convert-to-jpg.desktop
Executable file
10
convert-to-jpg.desktop
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Service
|
||||||
|
MimeType=image/*;
|
||||||
|
Actions=convertToJpg
|
||||||
|
|
||||||
|
[Desktop Action convertToJpg]
|
||||||
|
Name=Convert to JPG
|
||||||
|
Icon=convert
|
||||||
|
Exec=magick "%u" -set filename:base "%[basename]" "%[filename:base].jpg"
|
||||||
|
|
10
remove-metadata.desktop
Executable file
10
remove-metadata.desktop
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Service
|
||||||
|
MimeType=image/*;
|
||||||
|
Actions=removeMetadata
|
||||||
|
|
||||||
|
[Desktop Action removeMetadata]
|
||||||
|
Name=Remove Metadata
|
||||||
|
Icon=clear_left
|
||||||
|
Exec=exiftool -all= %U
|
||||||
|
|
10
scale-by-half.desktop
Executable file
10
scale-by-half.desktop
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Service
|
||||||
|
MimeType=image/*;
|
||||||
|
Actions=scaleByHalf
|
||||||
|
|
||||||
|
[Desktop Action scaleByHalf]
|
||||||
|
Name=Scale by Half
|
||||||
|
Icon=arrow-down-double
|
||||||
|
Exec=magick "%u" -resize 50% -set filename:half "%t_half.%e" "%[filename:half]"
|
||||||
|
|
Loading…
Reference in a new issue