LoginSignup
0
0

More than 1 year has passed since last update.

Chromeでファイルのダウンロードが終了したら自動でシャットダウン

Last updated at Posted at 2019-05-04

以下のとおりにshutdown-on-download-complete.shファイルを作成しsudo bash shutdown-on-download-complete.sh実行するとダウンロードが完了次第自動でシャットダウンします。

shutdown-on-download-complete.sh
source ~/.config/user-dirs.dirs

while [ -f $XDG_DOWNLOAD_DIR/*.crdownload ]
do
  sleep 1
done

systemctl poweroff -i

メモ

wget https://gist.githubusercontent.com/GitHub30/e269254548fa9ef7eba43eb464f0e310/raw/0c012689c7a1aae1c6fa0522facaac4d1ea862a1/shutdown-on-download-complete.sh \
    && bash shutdown-on-download-complete.sh
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0