diff options
author | joe <rbo@gmx.us> | 2025-10-14 23:48:05 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-10-14 23:48:05 +0200 |
commit | ac7e6ca7c5c8210da7509ac1abd754569887d1a2 (patch) | |
tree | 1672f58d763e6121f834d0de658dd49c8f6287de /.local/bin | |
parent | up (diff) | |
download | dotfiles-bsd-ac7e6ca7c5c8210da7509ac1abd754569887d1a2.tar.gz dotfiles-bsd-ac7e6ca7c5c8210da7509ac1abd754569887d1a2.tar.bz2 dotfiles-bsd-ac7e6ca7c5c8210da7509ac1abd754569887d1a2.tar.xz dotfiles-bsd-ac7e6ca7c5c8210da7509ac1abd754569887d1a2.tar.zst dotfiles-bsd-ac7e6ca7c5c8210da7509ac1abd754569887d1a2.zip |
up
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/dmapps | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/.local/bin/dmapps b/.local/bin/dmapps index bc7de0a..c7ec6a8 100755 --- a/.local/bin/dmapps +++ b/.local/bin/dmapps @@ -13,12 +13,7 @@ use constant PROG_LIST => "" . "Web browser" . "\n" . "Mail client" . "\n" . "--- Accessories ---" . "\n" . -"Arduino" . "\n" . "cool-retro-term" . "\n" . -"Qalculate!" . "\n" . -"Kleopatra" . "\n" . -"Transmission" . "\n" . -"Wireshark" . "\n" . "MKVToolNix" . "\n" . "Stellarium" . "\n" . "Google Earth" . "\n" . @@ -47,8 +42,6 @@ use constant PROG_LIST => "" . "Pulse Control Panel" . "\n" . "JACK Audio Connection Kit" . "\n" . "--- Multimedia ---" . "\n" . -"Ario" . "\n" . -"Kdenlive" . "\n" . "OBS Studio" . "\n" . "--- Games ---" . "\n" . "Steam" . "\n" . @@ -77,18 +70,13 @@ sub run chomp($action); $pid = fork(); - exit if $pid; + return if $pid; setsid(); exec("st") if $action =~ "Terminal"; exec("pcmanfm") if $action =~ "File manager"; exec("firefox") if $action =~ "Web browser"; exec("thunderbird") if $action =~ "Mail client"; - exec("arduino-ide") if $action =~ "Arduino"; exec("cool-retro-term") if $action =~ "cool-retro-term"; - exec("qalculate-gtk") if $action =~ "Qalculate!"; - exec("kleopatra") if $action =~ "Kleopatra"; - exec("transmission-gtk") if $action =~ "Transmission"; - exec("doas", "wireshark") if $action =~ "Wireshark"; exec("mkvtoolnix-gui") if $action =~ "MKVToolNix"; exec("stellarium") if $action =~ "Stellarium"; exec("google-earth-pro") if $action =~ "Google Earth"; @@ -110,8 +98,6 @@ sub run exec("audacity") if $action =~ "Audacity"; exec("pavucontrol") if $action =~ "Pulse Control Panel"; exec("qjackctl") if $action =~ "JACK Audio Connection Kit"; - exec("ario") if $action =~ "Ario"; - exec("kdenlive") if $action =~ "Kdenlive"; exec("obs") if $action =~ "OBS Studio"; exec("steam") if $action =~ "Steam"; exec("lutris") if $action =~ "Lutris"; |