diff options
| author | Mitsuo Tokumori <rtokumori@pucp.edu.pe> | 2023-11-25 15:50:08 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <rtokumori@pucp.edu.pe> | 2023-11-25 15:50:56 -0500 |
| commit | c285ddd9d16f0038da0c036882eef7be75e2aae0 (patch) | |
| tree | 7c4b75f275c2bf63dea6d5691051ea6e973def4c /local/bin/setup_default_apps.sh | |
| parent | 6778640f84cce092f425ad4ab9a1ec310a08f6d2 (diff) | |
Add helper scripts for dwmblocks
Diffstat (limited to 'local/bin/setup_default_apps.sh')
| -rwxr-xr-x | local/bin/setup_default_apps.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/local/bin/setup_default_apps.sh b/local/bin/setup_default_apps.sh new file mode 100755 index 0000000..809824f --- /dev/null +++ b/local/bin/setup_default_apps.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +# Set defaults for xdg-open +# +# For a list of MIME types see https://www.iana.org/assignments/media-types/media-types.xhtml + +# Useful commands: +# xdg-mime query filetype FILE +# xdg-mime query default MIMETYPE + +# File +#pcmanfm + +# Image +xdg-mime default nsxiv.desktop image/bmp image/gif image/jpeg image/jpg image/png image/tiff image/x-bmp image/x-portable-anymap image/x-portable-bitmap image/x-portable-graymap image/x-tga image/x-xpixmap image/webp image/heic image/svg+xml application/postscript image/jp2 image/jxl image/avif image/heif + +# Video +#xdg-mime default mpv.desktop A_LOT_OF_MIME_TYPES + +# Mail +#thunderbird + +# Office +xdg-mime default org.pwmt.zathura.desktop application/pdf application/postscript image/vnd.djvu +#libreoffice + +# Text +xdg-mime default nvim.desktop text/plain + +# Net +xdg-mime default org.qbittorrent.qBittorrent.desktop application/x-bittorrent x-scheme-handler/magnet |
