blob: 7ad100ad2d5a0f27626fe02bf3bc9712f59b4b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env bash
set_xdg_mime () {
application=$1
mimetype=$2
if [ -f /usr/share/applications/$application -o -f $HOME/.local/share/applications/$application ]
then
xdg-mime default $application $mimetype
fi
}
set_xdg_mime thunar.desktop inode/directory
set_xdg_mime org.pwmt.zathura.desktop application/pdf
set_xdg_mime firefox.desktop x-scheme-handler/http
set_xdg_mime firefox.desktop x-scheme-handler/https
set_xdg_mime sxiv.desktop image/png
set_xdg_mime sxiv.desktop image/jpeg
set_xdg_mime mpv.desktop video/x-flv
|