mirror of
https://github.com/dewomser/dolphin-context-convert.git
synced 2026-03-13 17:17:18 +01:00
Create ImageConverter.desktop
Adding images to context menu
This commit is contained in:
parent
1675a24b54
commit
a5a2eff43b
1 changed files with 53 additions and 0 deletions
53
ImageConverter.desktop
Normal file
53
ImageConverter.desktop
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Service
|
||||||
|
ServiceTypes=KonqPopupMenu/Plugin
|
||||||
|
MimeType=image/jpeg;image/png;image/gif;image/bmp;image/tiff;image/webp;image/svg+xml;image/x-eps;image/x-dcraw;image/vnd.microsoft.icon;
|
||||||
|
Actions=ConvertToJPG;ConvertToPNG;ConvertToGIF;ConvertToBMP;ConvertToTIFF;ConvertToWEBP;ConvertToEPS;ConvertToRAW;ConvertToICO;
|
||||||
|
X-KDE-Submenu=Convert Image
|
||||||
|
Icon=image
|
||||||
|
X-KDE-StartupNotify=false
|
||||||
|
|
||||||
|
[Desktop Action ConvertToJPG]
|
||||||
|
Name=Convert to JPG
|
||||||
|
Icon=image-jpeg
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U jpg image
|
||||||
|
|
||||||
|
[Desktop Action ConvertToPNG]
|
||||||
|
Name=Convert to PNG
|
||||||
|
Icon=image-png
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U png image
|
||||||
|
|
||||||
|
[Desktop Action ConvertToGIF]
|
||||||
|
Name=Convert to GIF
|
||||||
|
Icon=image-gif
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U gif image
|
||||||
|
|
||||||
|
[Desktop Action ConvertToBMP]
|
||||||
|
Name=Convert to BMP
|
||||||
|
Icon=image-bmp
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U bmp image
|
||||||
|
|
||||||
|
[Desktop Action ConvertToTIFF]
|
||||||
|
Name=Convert to TIFF
|
||||||
|
Icon=image-tiff
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U tiff image
|
||||||
|
|
||||||
|
[Desktop Action ConvertToWEBP]
|
||||||
|
Name=Convert to WEBP
|
||||||
|
Icon=image-webp
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U webp image
|
||||||
|
|
||||||
|
[Desktop Action ConvertToEPS]
|
||||||
|
Name=Convert to EPS
|
||||||
|
Icon=image-x-eps
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U eps image
|
||||||
|
|
||||||
|
[Desktop Action ConvertToRAW]
|
||||||
|
Name=Convert to RAW
|
||||||
|
Icon=image-x-dcraw
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U raw image
|
||||||
|
|
||||||
|
[Desktop Action ConvertToICO]
|
||||||
|
Name=Convert to ICO
|
||||||
|
Icon=image/vnd.microsoft.icon
|
||||||
|
Exec=~/Scripts/ffmpegconvert.sh %U ico image
|
||||||
Loading…
Add table
Add a link
Reference in a new issue