mirror of
https://git.sr.ht/~azikx/karbur
synced 2024-10-30 07:26:20 +00:00
update
This commit is contained in:
parent
ec090b93d7
commit
add62a4a04
|
@ -16,19 +16,114 @@ in {
|
||||||
mimeApps = {
|
mimeApps = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultApplications = {
|
defaultApplications = {
|
||||||
# DEFAULTS
|
# TEXT FORMATS
|
||||||
"default-web-browser" = [ "zen.${ds}" ];
|
"text/plain" = "Helix.${ds}";
|
||||||
# FILE FORMATS
|
"text/x-cmake" = "Helix.${ds}";
|
||||||
"image/*" = [ "swayimg.${ds}" ];
|
"text/markdown" = "Helix.${ds}";
|
||||||
"video/*" = [ "mpv.${ds}" ];
|
"text/rhtml" = "Helix.${ds}";
|
||||||
"text/*" = [ "Helix.${ds}" ];
|
"text/x-tex" = "Helix.${ds}";
|
||||||
# OTHERS
|
"text/x-java" = "Helix.${ds}";
|
||||||
"inode/x-empty" = [ "Helix.${ds}" ];
|
"text/x-ruby" = "Helix.${ds}";
|
||||||
"application/json" = [ "Helix.${ds}" ];
|
"inode/x-empty" = "Helix.${ds}";
|
||||||
"x-scheme-handler/http" = [ "zen.${ds}" ];
|
"text/x-python" = "Helix.${ds}";
|
||||||
"x-scheme-handler/https" = [ "zen.${ds}" ];
|
"text/x-readme" = "Helix.${ds}";
|
||||||
"x-scheme-handler/about" = [ "zen.${ds}" ];
|
"text/x-markdown" = "Helix.${ds}";
|
||||||
"x-scheme-handler/unknown" = [ "zen.${ds}" ];
|
"application/json" = "Helix.${ds}";
|
||||||
|
"application/x-ruby" = "Helix.${ds}";
|
||||||
|
"application/x-yaml" = "Helix.${ds}";
|
||||||
|
"application/x-shellscript" = "Helix.${ds}";
|
||||||
|
"application/x-docbook+xml" = "Helix.${ds}";
|
||||||
|
# IMAGE FORMATS
|
||||||
|
"image/avif" = "swayimg.${ds}";
|
||||||
|
"image/gif" = "swayimg.${ds}";
|
||||||
|
"image/heif" = "swayimg.${ds}";
|
||||||
|
"image/jpg" = "swayimg.${ds}";
|
||||||
|
"image/jpeg" = "swayimg.${ds}";
|
||||||
|
"image/jxl" = "swayimg.${ds}";
|
||||||
|
"image/png" = "swayimg.${ds}";
|
||||||
|
"image/bmp" = "swayimg.${ds}";
|
||||||
|
"image/x-eps" = "swayimg.${ds}";
|
||||||
|
"image/x-icns" = "swayimg.${ds}";
|
||||||
|
"image/x-ico" = "swayimg.${ds}";
|
||||||
|
"image/x-portable-bitmap" = "swayimg.${ds}";
|
||||||
|
"image/x-portable-graymap" = "swayimg.${ds}";
|
||||||
|
"image/x-portable-swayimgmap" = "swayimg.${ds}";
|
||||||
|
"image/x-xbitmap" = "swayimg.${ds}";
|
||||||
|
"image/x-xswayimgmap" = "swayimg.${ds}";
|
||||||
|
"image/tiff" = "swayimg.${ds}";
|
||||||
|
"image/x-psd" = "swayimg.${ds}";
|
||||||
|
"image/x-webp" = "swayimg.${ds}";
|
||||||
|
"image/webp" = "swayimg.${ds}";
|
||||||
|
"image/x-tga" = "swayimg.${ds}";
|
||||||
|
"image/svg+xml" = "swayimg.${ds}";
|
||||||
|
# VIDEO FORMATS
|
||||||
|
"video/3gp" = "mpv.${ds}";
|
||||||
|
"video/3gpp" = "mpv.${ds}";
|
||||||
|
"video/3gpp2" = "mpv.${ds}";
|
||||||
|
"video/avi" = "mpv.${ds}";
|
||||||
|
"video/divx" = "mpv.${ds}";
|
||||||
|
"video/dv" = "mpv.${ds}";
|
||||||
|
"video/fli" = "mpv.${ds}";
|
||||||
|
"video/flv" = "mpv.${ds}";
|
||||||
|
"video/mp2t" = "mpv.${ds}";
|
||||||
|
"video/mp4" = "mpv.${ds}";
|
||||||
|
"video/mp4v-es" = "mpv.${ds}";
|
||||||
|
"video/mpeg" = "mpv.${ds}";
|
||||||
|
"video/msvideo" = "mpv.${ds}";
|
||||||
|
"video/ogg" = "mpv.${ds}";
|
||||||
|
"video/quicktime" = "mpv.${ds}";
|
||||||
|
"video/vnd.divx" = "mpv.${ds}";
|
||||||
|
"video/vnd.mpegurl" = "mpv.${ds}";
|
||||||
|
"video/vnd.rn-realvideo" = "mpv.${ds}";
|
||||||
|
"video/webm" = "mpv.${ds}";
|
||||||
|
"video/x-avi" = "mpv.${ds}";
|
||||||
|
"video/x-flv" = "mpv.${ds}";
|
||||||
|
"video/x-m4v" = "mpv.${ds}";
|
||||||
|
"video/x-matroska" = "mpv.${ds}";
|
||||||
|
"video/x-mpeg2" = "mpv.${ds}";
|
||||||
|
"video/x-ms-asf" = "mpv.${ds}";
|
||||||
|
"video/x-msvideo" = "mpv.${ds}";
|
||||||
|
"video/x-ms-wmv" = "mpv.${ds}";
|
||||||
|
"video/x-ms-wmx" = "mpv.${ds}";
|
||||||
|
"video/x-ogm" = "mpv.${ds}";
|
||||||
|
"video/x-ogm+ogg" = "mpv.${ds}";
|
||||||
|
"video/x-theora" = "mpv.${ds}";
|
||||||
|
"video/x-theora+ogg" = "mpv.${ds}";
|
||||||
|
"application/x-matroska" = "mpv.${ds}";
|
||||||
|
# AUDIO FORMATS
|
||||||
|
"audio/aac" = "mpv.${ds}";
|
||||||
|
"audio/mp4" = "mpv.${ds}";
|
||||||
|
"audio/mpeg" = "mpv.${ds}";
|
||||||
|
"audio/mpegurl" = "mpv.${ds}";
|
||||||
|
"audio/ogg" = "mpv.${ds}";
|
||||||
|
"audio/vnd.rn-realaudio" = "mpv.${ds}";
|
||||||
|
"audio/vorbis" = "mpv.${ds}";
|
||||||
|
"audio/x-flac" = "mpv.${ds}";
|
||||||
|
"audio/x-mp3" = "mpv.${ds}";
|
||||||
|
"audio/x-mpegurl" = "mpv.${ds}";
|
||||||
|
"audio/x-ms-wma" = "mpv.${ds}";
|
||||||
|
"audio/x-musepack" = "mpv.${ds}";
|
||||||
|
"audio/x-oggflac" = "mpv.${ds}";
|
||||||
|
"audio/x-pn-realaudio" = "mpv.${ds}";
|
||||||
|
"audio/x-scpls" = "mpv.${ds}";
|
||||||
|
"audio/x-speex" = "mpv.${ds}";
|
||||||
|
"audio/x-vorbis" = "mpv.${ds}";
|
||||||
|
"audio/x-vorbis+ogg" = "mpv.${ds}";
|
||||||
|
"audio/x-wav" = "mpv.${ds}";
|
||||||
|
# WEB
|
||||||
|
"text/html" = "zen.${ds}";
|
||||||
|
"x-scheme-handler/ftp" = "zen.${ds}";
|
||||||
|
"application/xhtml+xml" = "zen.${ds}";
|
||||||
|
"x-scheme-handler/http" = "zen.${ds}";
|
||||||
|
"x-scheme-handler/https" = "zen.${ds}";
|
||||||
|
"x-scheme-handler/chrome" = "zen.${ds}";
|
||||||
|
"application/x-extension-htm" = "zen.${ds}";
|
||||||
|
"application/x-extension-xht" = "zen.${ds}";
|
||||||
|
"application/x-extension-html" = "zen.${ds}";
|
||||||
|
"application/x-extension-shtml" = "zen.${ds}";
|
||||||
|
"application/x-extension-xhtml" = "zen.${ds}";
|
||||||
|
"x-scheme-handler/about" = "zen.${ds}";
|
||||||
|
"x-scheme-handler/unknown" = "zen.${ds}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
userDirs = {
|
userDirs = {
|
||||||
|
|
Loading…
Reference in a new issue