From 20774981c7e6e85e4abbbc35bc50f71164c90792 Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 19 Jun 2023 17:10:10 +0200 Subject: up --- .local/bin/dmapps | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.local/bin/dmapps b/.local/bin/dmapps index 3dc2377..d97d0bc 100755 --- a/.local/bin/dmapps +++ b/.local/bin/dmapps @@ -17,6 +17,7 @@ use constant PROG_LIST => "" . "Transmission" . "\n" . "Wireshark" . "\n" . "MKVToolNix" . "\n" . +"Stellarium" . "\n" . "Google Earth" . "\n" . "--- Editors ---" . "\n" . "NeoVim" . "\n" . @@ -114,6 +115,13 @@ sub run setsid(); exec("mkvtoolnix-gui"); } + # Stellarium + elsif ($action eq "Stellarium") { + $pid = fork(); + exit if $pid; + setsid(); + exec("stellarium"); + } # Google Earth elsif ($action eq "Google Earth") { $pid = fork(); -- cgit v1.2.3