diff options
| author | bd <bdunahu@operationnull.com> | 2025-09-01 22:25:24 -0400 | 
|---|---|---|
| committer | bd <bdunahu@operationnull.com> | 2025-09-01 22:25:24 -0400 | 
| commit | 9af34539d7e7294c4ce4715880021889a9b63815 (patch) | |
| tree | 98abc164509550ee5c8f0c60691c6c1ac23f636b | |
| parent | 0de4b011e244f88ceb2625f807b873122df56a49 (diff) | |
Open ciso files with dolphin
| -rw-r--r-- | .config/emacs/modules/bd--files.el | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/.config/emacs/modules/bd--files.el b/.config/emacs/modules/bd--files.el index b58c727..a1dfb99 100644 --- a/.config/emacs/modules/bd--files.el +++ b/.config/emacs/modules/bd--files.el @@ -40,6 +40,7 @@                       '(("gba" . "mgba")                         ("z64" . "mupen64plus")                         ("iso" . "dolphin-emu") +		       ("ciso" . "dolphin-emu")                         ("n64" . "mupen64plus")                         ("sfc" . "bsnes"))))))      (start-process command nil command (expand-file-name file)))) @@ -65,7 +66,7 @@        (bd/open-with-function #'bd/nsxiv))       ((string-match (regexp-opt '("qcow2")) ext)        (bd/open-with-function #'bd/qemu)) -     ((string-match (regexp-opt '("gba" "z64" "n64" "sfc" "iso")) ext) +     ((string-match (regexp-opt '("gba" "z64" "n64" "sfc" "iso" "ciso")) ext)        (bd/open-with-function #'bd/rom))       (t (apply f args)))))  (advice-add #'find-file :around #'bd/external-find-file-wrapper) | 
