diff options
author | Joe <rbo@gmx.us> | 2024-12-23 19:45:26 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-12-23 19:45:26 +0100 |
commit | 37ee03c85c50a0e7647f38026baa45d93b01ca23 (patch) | |
tree | cfe9d3ed4ad483a3df3854808021388ddac929d0 | |
parent | up (diff) | |
download | dotfiles-bsd-37ee03c85c50a0e7647f38026baa45d93b01ca23.tar.gz dotfiles-bsd-37ee03c85c50a0e7647f38026baa45d93b01ca23.tar.bz2 dotfiles-bsd-37ee03c85c50a0e7647f38026baa45d93b01ca23.tar.xz dotfiles-bsd-37ee03c85c50a0e7647f38026baa45d93b01ca23.tar.zst dotfiles-bsd-37ee03c85c50a0e7647f38026baa45d93b01ca23.zip |
up
-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"); } |