diff options
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"; |