diff options
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/dmapps | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/dmapps b/.local/bin/dmapps index 2e210b7..527cb5b 100755 --- a/.local/bin/dmapps +++ b/.local/bin/dmapps @@ -114,7 +114,7 @@ sub run $pid = fork(); exit if $pid; setsid(); - exec("alacritty", "-e", "nvim"); + exec($TERMINAL, "-e", "nvim"); } # Emacs elsif ($action eq "Emacs") { @@ -128,7 +128,7 @@ sub run $pid = fork(); exit if $pid; setsid(); - exec("alacritty", "-e", "emacs-nw"); + exec($TERMINAL, "-e", "emacs-nw"); } return; } |