diff options
Diffstat (limited to '.local')
-rwxr-xr-x | .local/bin/dmapps | 8 |
1 files changed, 8 insertions, 0 deletions
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(); |