diff options
author | joe <rbo@gmx.us> | 2025-10-15 11:38:28 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-10-15 11:38:28 +0200 |
commit | 95bfe8ec3291a7b665eb1df2b68ccc07a86bae08 (patch) | |
tree | 049c61237ffad4aec5e66a71ba751a0c659eaa36 | |
parent | up (diff) | |
download | dotfiles-bsd-95bfe8ec3291a7b665eb1df2b68ccc07a86bae08.tar.gz dotfiles-bsd-95bfe8ec3291a7b665eb1df2b68ccc07a86bae08.tar.bz2 dotfiles-bsd-95bfe8ec3291a7b665eb1df2b68ccc07a86bae08.tar.xz dotfiles-bsd-95bfe8ec3291a7b665eb1df2b68ccc07a86bae08.tar.zst dotfiles-bsd-95bfe8ec3291a7b665eb1df2b68ccc07a86bae08.zip |
up
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 c7ec6a8..e5f9dab 100755 --- a/.local/bin/dmapps +++ b/.local/bin/dmapps @@ -73,9 +73,9 @@ sub run return if $pid; setsid(); exec("st") if $action =~ "Terminal"; - exec("pcmanfm") if $action =~ "File manager"; + exec("st", "-e", "nnn") if $action =~ "File manager"; exec("firefox") if $action =~ "Web browser"; - exec("thunderbird") if $action =~ "Mail client"; + exec("st", "-e", "neomutt") if $action =~ "Mail client"; exec("cool-retro-term") if $action =~ "cool-retro-term"; exec("mkvtoolnix-gui") if $action =~ "MKVToolNix"; exec("stellarium") if $action =~ "Stellarium"; |