diff options
author | Joe <rrbo@proton.me> | 2023-06-19 16:17:21 +0200 |
---|---|---|
committer | Joe <rrbo@proton.me> | 2023-06-19 16:17:21 +0200 |
commit | eb82ac21b93cac1318c459898e98331186851f65 (patch) | |
tree | 6d0e40304a6bbd6514e00b5fde34f6c6389b6d8a /.local/bin/dmapps | |
parent | up (diff) | |
download | dotfiles-bsd-eb82ac21b93cac1318c459898e98331186851f65.tar.gz dotfiles-bsd-eb82ac21b93cac1318c459898e98331186851f65.tar.bz2 dotfiles-bsd-eb82ac21b93cac1318c459898e98331186851f65.tar.xz dotfiles-bsd-eb82ac21b93cac1318c459898e98331186851f65.tar.zst dotfiles-bsd-eb82ac21b93cac1318c459898e98331186851f65.zip |
up
Diffstat (limited to '.local/bin/dmapps')
-rwxr-xr-x | .local/bin/dmapps | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.local/bin/dmapps b/.local/bin/dmapps index 7fa9c37..3dc2377 100755 --- a/.local/bin/dmapps +++ b/.local/bin/dmapps @@ -208,6 +208,13 @@ sub run setsid(); exec("liferea"); } + # HexChat + elsif ($action eq "HexChat") { + $pid = fork(); + exit if $pid; + setsid(); + exec("hexchat"); + } # --- Work --- # Remmina elsif ($action eq "Remmina") { |