diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-20 21:55:43 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 21:55:43 -0800 |
commit | cf221ca92d82c27bee485a7e597daf98f9697162 (patch) | |
tree | ada0cc28b1428fc83624fd235cc4cbb19343b574 | |
parent | ee6d40d414199f1b957499b4cc07d63e5c0b7ec5 (diff) | |
parent | 59c6f45e7a6b2920a3ac26d2951fa9798670335a (diff) |
Merge pull request #7609 from Tatsh/file-assoc
dist/XDG: add more file associations
-rw-r--r-- | dist/yuzu.desktop | 2 | ||||
-rw-r--r-- | dist/yuzu.xml | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/dist/yuzu.desktop b/dist/yuzu.desktop index 105080c73..6cc0704d2 100644 --- a/dist/yuzu.desktop +++ b/dist/yuzu.desktop @@ -8,5 +8,5 @@ Icon=yuzu TryExec=yuzu Exec=yuzu %f Categories=Game;Emulator;Qt; -MimeType=application/x-nx-nro;application/x-nx-nso; +MimeType=application/x-nx-nro;application/x-nx-nso;application/x-nx-nsp;application/x-nx-xci; Keywords=Switch;Nintendo;
\ No newline at end of file diff --git a/dist/yuzu.xml b/dist/yuzu.xml index f6e408321..dd1e30a6b 100644 --- a/dist/yuzu.xml +++ b/dist/yuzu.xml @@ -15,4 +15,19 @@ <glob pattern="*.nso"/> <magic><match value="NSO" type="string" offset="0"/></magic> </mime-type> + + <mime-type type="application/x-nx-nsp"> + <comment>Nintendo Switch Package</comment> + <acronym>NSP</acronym> + <icon name="yuzu"/> + <glob pattern="*.nsp"/> + <magic><match value="PFS" type="string" offset="0"/></magic> + </mime-type> + + <mime-type type="application/x-nx-xci"> + <comment>Nintendo Switch Card Image</comment> + <acronym>XCI</acronym> + <icon name="yuzu"/> + <glob pattern="*.xci"/> + </mime-type> </mime-info>
\ No newline at end of file |