Como avisar (noise / bleep) quando o Ubuntu está prestes a entrar no modo de suspensão?

8

Eu tenho um tempo muito baixo no modo de suspensão. Eu gosto desse jeito ... (são 20 minutos).

Depois de ficar inativo por 20 minutos, meu sistema entrará no modo de suspensão automática e preciso pressionar o teclado para reativar.

Existe uma maneira de fazer um barulho / bipe quando o Ubuntu está prestes a entrar no modo de suspensão?

Recebo um aviso de notificação com texto, mas frequentemente não estou olhando para a tela.

Layke
fonte

Respostas:

3

Como a equipe do NotifyOSD está demorando para adicionar som às notificações, aqui está um script que realizará a mesma coisa suficientemente boa para o seu caso de uso específico.
(Ele só notifica você com um sinal sonoro quando o sistema entra no modo de suspensão, sem aviso sonoro em todas as notificações, receio ...)

  1. Copie e cole o seguinte script:

    #!/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. para dentro gedit

  3. Salve-o como sleep-beepno diretório Documentos
  4. Pressione Ctrl+ Alt+ Tpara ir para um terminal
  5. Torne o script executável e copie-o para o diretório certo:

    sudo chmod +x ~/Documents/sleep-beep
    sudo cp ~/Documents/sleep-beep /etc/pm/sleep.d/sleep-beep
    
  6. Como ele precisa reproduzir arquivos ogg na linha de comando, também precisa:

    sudo apt-get install vorbis-tools
    

Feito! :-)

Fabby
fonte
O que esse resumo | thaw faz? E de onde o script recebe os US $ 1?
Ashhar Hasan
@AshharHasan: Você está me perseguindo ??? ;-) Obtém de outro script ... : D
Fabby
1
Vou ler alguma documentação agora, eu acho. Acabei de ver essa pergunta e parecia algo que eu gostaria.
Ashhar Hasan
Sim! RTFM é sempre bom! ;-) Mas a votação é ainda melhor! @AshharHasan
Fabby