Ubuntuがスリープモードに入る直前に警告(ノイズ/ビープ)する方法は?


8

スリープモードのタイミングが非常に遅い。私はそれがこのように好きです...(それは20分くらいです)。

20分間アイドル状態になると、システムが自動スリープモードになり、キーボードを押して再度アクティブにする必要があります。

Ubuntuがスリープモードに移行しようとしているときに音を出す方法はありますか?

テキスト付きの通知警告が表示されますが、画面を見ないことがよくあります。

回答:


3

NotifyOSDチームが通知にサウンドを追加するために時間をかけているので、特定のユースケースに十分に対応できるスクリプトを次に示します。
(システムがスリープ状態になったときにビープ音だけが通知されます。恐れ入りますが、すべての通知ではビープ音は鳴りません...)

  1. 次のスクリプトをコピーして貼り付けます。

    #!/bin/bash
    
    #
    # This script plays a sound if the system is going into hibernation/sleep mode
    # as an answer to http://askubuntu.com/questions/552999/how-to-warn-noise-bleep-when-ubuntu-is-about-to-go-into-sleep-mode/553026
    # Original script name: /etc/pm/sleep.d/sleep-beep
    #
    
    # Copyright (c) Fabby 2015
    
    # This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
    # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. See the GNU General Public License for more details.
    # You DID NOT receive a copy of the GNU General Public License along with this program as the license is bigger then this program.
    # Therefore, see http://www.gnu.org/licenses/ for more details.
    
    case $1 in
      suspend|suspend_hybrid|hibernate)
        notify-send --urgency=NORMAL --icon=face-tired "Going to sleep"
        ogg123 /usr/share/sounds/ubuntu/stereo/desktop-login.ogg
      ;;
    
      resume|thaw)
        # No need to do anything here, but easy to add if needed
      ;;
    
    esac
    
  2. gedit

  3. sleep-beepDocumentsディレクトリに保存します
  4. Ctrl+ Alt+ Tを押してターミナルに移動します
  5. スクリプトを実行可能にして、正しいディレクトリにコピーします。

    sudo chmod +x ~/Documents/sleep-beep
    sudo cp ~/Documents/sleep-beep /etc/pm/sleep.d/sleep-beep
    
  6. コマンドラインからoggファイルを再生する必要があるため、以下も必要です。

    sudo apt-get install vorbis-tools
    

できた!:-)


その再開|解凍は何をしますか?そして、スクリプトはどこから$ 1を取得しますか?
Ashhar Hasan

@AshharHasan:あなたは私をストーカーですか??? ;-)これは別のスクリプトから取得します... :D
Fabby

1
私は今、いくつかのドキュメントを読みます。ちょうどこの質問を見て、私が望むもののように見えました。
Ashhar Hasan

はい!RTFMは常に良いです! ;-) しかし、賛成投票はさらに良いです!@AshharHasan
Fabby
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.