diff options
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/dmapps | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.local/bin/dmapps b/.local/bin/dmapps index 783e37a..69f7d61 100755 --- a/.local/bin/dmapps +++ b/.local/bin/dmapps @@ -53,6 +53,8 @@ use constant PROG_LIST => "" . "Lutris" . "\n" . "GZDoom" . "\n" . "DOSBox" . "\n" . +"Mupen64Plus" . "\n" . +"Cemu" . "\n" . "PCSX2" . "\n" . "RPCS3"; use constant WORK_LIST => "" . @@ -187,6 +189,12 @@ sub run case "DOSBox" { exec("dosbox"); } + case "Mupen64Plus" { + exec("mupen64plus-qt"); + } + case "Cemu" { + exec("cemu"); + } case "PCSX2" { exec("pcsx2"); } |