summaryrefslogtreecommitdiffstats
path: root/.local
diff options
context:
space:
mode:
authorJoe <rrbo@proton.me>2023-06-19 17:10:10 +0200
committerJoe <rrbo@proton.me>2023-06-19 17:10:10 +0200
commit20774981c7e6e85e4abbbc35bc50f71164c90792 (patch)
tree81b528a8e9e858280527754481175a75db066c00 /.local
parentup (diff)
downloaddotfiles-bsd-20774981c7e6e85e4abbbc35bc50f71164c90792.tar.gz
dotfiles-bsd-20774981c7e6e85e4abbbc35bc50f71164c90792.tar.bz2
dotfiles-bsd-20774981c7e6e85e4abbbc35bc50f71164c90792.tar.xz
dotfiles-bsd-20774981c7e6e85e4abbbc35bc50f71164c90792.tar.zst
dotfiles-bsd-20774981c7e6e85e4abbbc35bc50f71164c90792.zip
up
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/dmapps8
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();