summaryrefslogtreecommitdiffstats
path: root/.local/bin
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-x.local/bin/dmapps6
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/dmapps b/.local/bin/dmapps
index 0ce4c81..bc7de0a 100755
--- a/.local/bin/dmapps
+++ b/.local/bin/dmapps
@@ -79,7 +79,7 @@ sub run
$pid = fork();
exit if $pid;
setsid();
- exec("alacritty") if $action =~ "Terminal";
+ exec("st") if $action =~ "Terminal";
exec("pcmanfm") if $action =~ "File manager";
exec("firefox") if $action =~ "Web browser";
exec("thunderbird") if $action =~ "Mail client";
@@ -92,9 +92,9 @@ sub run
exec("mkvtoolnix-gui") if $action =~ "MKVToolNix";
exec("stellarium") if $action =~ "Stellarium";
exec("google-earth-pro") if $action =~ "Google Earth";
- exec("alacritty", "-e", "nvim") if $action =~ "NeoVim";
+ exec("st", "-e", "nvim") if $action =~ "NeoVim";
exec("emacs") if $action =~ "Emacs";
- exec("alacritty", "-e", "emacs-nw") if $action =~ "Emacs-NoX";
+ exec("st", "-e", "emacs-nw") if $action =~ "Emacs-NoX";
exec("gimp") if $action =~ "GIMP - GNU Image Manipulation Program";
exec("inkscape") if $action =~ "Inkscape";
exec("librewolf") if $action =~ "LibreWolf";