Associate common video mime types with vlc

This commit is contained in:
Daniel Siepmann 2022-09-21 07:44:46 +02:00
parent 4c01b29548
commit edcfa3f56b
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -116,9 +116,11 @@
# Use file --mime-type <filename> to detect mime type
defaultApplications = {
"application/pdf" = [ "org.pwmt.zathura-pdf-mupdf.desktop" ];
"text/calendar" = [ "thunderbird.desktop" ];
"text/calendar" = [ "evolution.desktop" ];
"application/pdf" = [ "org.pwmt.zathura-pdf-mupdf.desktop" ];
# Images
"image/bmp" = [ "feh.desktop" ];
"image/gif" = [ "feh.desktop" ];
"image/jpeg" = [ "feh.desktop" ];
@ -136,6 +138,10 @@
"image/x-portable-pixmap" = [ "feh.desktop" ];
"image/x-tga" = [ "feh.desktop" ];
"image/x-xbitmap" = [ "feh.desktop" ];
# Video
"video/mp4" = [ "vlc.desktop" ];
"video/m4v" = [ "vlc.desktop" ];
};
};