우분투가 절전 모드로 전환 될 때 경고 (소음 / 경고음)하는 방법은 무엇입니까?


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-beep문서 디렉토리에있는 그대로 저장
  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.