diff options
author | Joe <rbo@gmx.us> | 2024-11-13 11:35:44 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-11-13 11:35:44 +0100 |
commit | 8648ccfb1a3ef76d8b0c06f6ead0befa7cdee0e9 (patch) | |
tree | 82f21d7c1e3b32c6fa649620768ea2102dc274db | |
parent | up (diff) | |
download | dotfiles-bsd-8648ccfb1a3ef76d8b0c06f6ead0befa7cdee0e9.tar.gz dotfiles-bsd-8648ccfb1a3ef76d8b0c06f6ead0befa7cdee0e9.tar.bz2 dotfiles-bsd-8648ccfb1a3ef76d8b0c06f6ead0befa7cdee0e9.tar.xz dotfiles-bsd-8648ccfb1a3ef76d8b0c06f6ead0befa7cdee0e9.tar.zst dotfiles-bsd-8648ccfb1a3ef76d8b0c06f6ead0befa7cdee0e9.zip |
up
-rwxr-xr-x | .local/bin/dmapps | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.local/bin/dmapps b/.local/bin/dmapps index e77017f..2b07fab 100755 --- a/.local/bin/dmapps +++ b/.local/bin/dmapps @@ -60,8 +60,9 @@ use constant WORK_LIST => "" . "Insomnia" . "\n" . "VMware" . "\n" . "DBeaver" . "\n" . +"MongoDB Compass" . "\n" . "Miro" . "\n" . -"FortiClient VPN" . "\n" . +"FortiClient VPN" . "\n" . "Teams"; sub run @@ -200,6 +201,9 @@ sub run case "DBeaver" { exec("dbeaver"); } + case "MongoDB Compass" { + exec("nixGL", "mongodb-compass"); + } case "Miro" { exec("miro"); } |