回答:
これが、harrymcの応答に基づいて作成したbashスクリプトです。
#!/usr/bin/bash
# NAME
# nosleep - prevent sleep and hibernation while running a command
#
# SYNOPSIS
# nosleep COMMAND [ARG]...
# Make sure the power scheme gets restored, even if Ctrl-C happens
cleanup()
{
powercfg -setactive $SCHEME_GUID
powercfg -delete $TMP_GUID
return $?
}
trap cleanup SIGINT
# Disable sleep and hibernate timers
export SCHEME_GUID=`powercfg -getactivescheme | gawk '{ print $4 }'`
export TMP_GUID=`powercfg -duplicatescheme $SCHEME_GUID | gawk '{ print $4 }'`
if [[ -z $TMP_GUID ]]; then
echo "ERROR: could not duplicate the current power scheme"
exit 254
fi
powercfg -setactive $TMP_GUID
powercfg -changename $TMP_GUID nosleep "temporary scheme for disabling sleep and hibernation"
powercfg -change -standby-timeout-ac 0
powercfg -change -hibernate-timeout-ac 0
# Run the command
"$@"
powercfg -setactive $SCHEME_GUID
powercfg -delete $TMP_GUID
"$*"
から$*
。それ以外の場合、複数の引数を指定すると次のようになります(例$nosleep sleep 1
:/usr/bin/nosleep: line 31: sleep 1 command not found
"$@"
です。"$*"
これは、すべての引数を連結するため$*
間違っていますが、引数を分割し$IFS
て空の引数を削除するため間違っています。
Loop { SoundPlay, %A_WinDir%\Media\ding.wav }
、wait
引数なし。
現在nosleep
、Cygwinにはそのようなコマンドがあります。nosleep
パッケージをインストールして実行するだけです
nosleep myscript.sh
Andrew E. Schulmanが2011年に執筆。https: //cygwin.com/ml/cygwin/2011-09/msg00151.htmlを参照
Launchpadのソース。これは、使用していますSetThreadExecutionState()
(不眠症は、すでに述べたように)、独立した電源設定を作成しません。
Usage: nosleep [OPTION...] command [args]
Run a command while inhibiting computer sleep or hibernation.
-a, --awaymode Force away mode instead of sleep mode
-d, --display Keep the display on
-i, --ifacpower Following options only apply if AC power is on
-?, --help give this help list
--usage give a short usage message
-V, --version print program version
Report bugs to the Cygwin mailing list <cygwin@cygwin.com>.
これは、システムがユーザーの要求(ラップトップの蓋を閉めるときなど)でスリープするのではなく、アイドル時に自動的にスリープするのを防ぐことに注意してください。
関連する質問に関する@LorenzCKによるこの回答からの提案:
Windowsモビリティセンターのプレゼンティングモードを使用する(利用可能な場合)
%WINDIR%\System32\PresentationSettings.exe "/start"
powercfg -requests
コマンドプロンプトで確認します。出力する必要があります:
DISPLAY:
[PROCESS] \Device\HarddiskVolume2\Windows\System32\PresentationSettings.exe
SYSTEM:
[PROCESS] \Device\HarddiskVolume2\Windows\System32\PresentationSettings.exe
利点は、シャットダウンまたは再起動時にクリアされることです。これで、元の電源設定の保存と復元について心配する必要はありません👍
また、モニターがスリープ状態になるのを防ぎますが、スクリプト内のコマンドでそれを実現できます。シンプルだがサードパーティのソリューション:NirCmd nircmd monitor off
またはAutoHotkey SendMessage, 0x112, 0xF170, 2,, Program Manager
ビルトインpowercfg /requestsoverride process PresentationSettings.exe display
は動作しません。