1 diff --git a/dolphin/mat2.desktop b/dolphin/mat2.desktop
2 index 41c8de4..11df258 100644
3 --- a/dolphin/mat2.desktop
4 +++ b/dolphin/mat2.desktop
5 @@ -8,6 +8,6 @@ Type=Service
7 Name[de]=Metadaten löschen
8 Name[es]=Limpiar metadatos
9 -Icon=/usr/share/icons/hicolor/scalable/apps/mat2.svg
10 -Exec=kdialog --yesno "$( mat2 -s %F )" --title "Clean Metadata?" && mat2 %U
11 -Exec[de]=kdialog --yesno "$( mat2 -s %F )" --title "Metadaten löschen?" && mat2 %U
13 +Exec=@kdialog@ --yesno "$( @mat2@ -s %F )" --title "Clean Metadata?" && @mat2@ %U
14 +Exec[de]=@kdialog@ --yesno "$( @mat2@ -s %F )" --title "Metadaten löschen?" && @mat2@ %U
15 diff --git a/libmat2/exiftool.py b/libmat2/exiftool.py
16 index 2b91ac2..5fcf6e5 100644
17 --- a/libmat2/exiftool.py
18 +++ b/libmat2/exiftool.py
26 from typing import Union, Set, Dict
28 @@ -67,14 +65,5 @@ class ExiftoolParser(abstract.AbstractParser):
32 -@functools.lru_cache(maxsize=None)
33 def _get_exiftool_path() -> str: # pragma: no cover
34 - which_path = shutil.which('exiftool')
38 - # Exiftool on Arch Linux has a weird path
39 - if os.access('/usr/bin/vendor_perl/exiftool', os.X_OK):
40 - return '/usr/bin/vendor_perl/exiftool'
42 - raise RuntimeError("Unable to find exiftool")
44 diff --git a/libmat2/video.py b/libmat2/video.py
45 index 39059c5..82fe1e7 100644
46 --- a/libmat2/video.py
47 +++ b/libmat2/video.py
54 from typing import Union, Dict
55 @@ -135,10 +133,5 @@ class MP4Parser(AbstractFFmpegParser):
59 -@functools.lru_cache(maxsize=None)
60 def _get_ffmpeg_path() -> str: # pragma: no cover
61 - which_path = shutil.which('ffmpeg')
65 - raise RuntimeError("Unable to find ffmpeg")