diff options
-rw-r--r-- | .config/alacritty/alacritty.toml | 4 | ||||
-rwxr-xr-x | .local/bin/dmapps | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index 6c01e12..998c682 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -43,9 +43,9 @@ render_timer = false [env] TERM = "xterm-256color" -[shell] +[terminal.shell] program = "/usr/bin/zsh" -args = "--login" +args = ["--login"] [font] 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"); } |