diff options
author | joe <rbo@gmx.us> | 2025-09-27 21:17:49 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-27 21:17:49 +0200 |
commit | 73c300db3f7286f3b27397b7bcbe21858d38de77 (patch) | |
tree | cb031b10471bfaa037056a277fca54fa1ef66c30 /.local/bin/dmapps | |
parent | up (diff) | |
download | dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.tar.gz dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.tar.bz2 dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.tar.xz dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.tar.zst dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.zip |
up
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/dmapps | 6 |
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"; |