tonikelope / megabasterd

Yet another unofficial (and ugly) cross-platform MEGA downloader/uploader/streaming suite.
GNU General Public License v3.0
4.58k stars 595 forks source link

Shutdown the PC after all downloads/uploads finished #463

Open rayman3003 opened 1 year ago

rayman3003 commented 1 year ago

Please add an option that allows MegaBasterd to shutdown the PC, after all downloads/uploads get finished.

Parranoh commented 1 year ago

A workaround, which I sometimes use: Use the "close after transfers finish" option and write a little shell script that waits for MegaBasterd to close and then shuts down the PC, something like this:


#!/bin/sh
while
  pgrep -f MegaBasterd >/dev/null
do
  sleep 5
done
shutdown now