¿Cómo advertir (ruido / bleep) cuando Ubuntu está a punto de entrar en modo de suspensión?

8

Tengo un tiempo muy bajo en el modo de suspensión. Me gusta de esta manera ... (son como 20 minutos).

Después de estar inactivo durante 20 minutos, mi sistema entrará en modo de suspensión automática y necesito presionar el teclado para reactivarlo.

¿Hay alguna manera de hacer un ruido / pitido cuando Ubuntu está a punto de entrar en modo de suspensión?

Recibo una advertencia de notificación con texto, pero con frecuencia no estoy mirando la pantalla.

Layke
fuente

Respuestas:

3

Como el equipo de NotifyOSD se toma su tiempo para agregar sonido a las notificaciones, aquí hay un script que logrará lo mismo lo suficientemente bueno para su caso de uso particular.
(Solo te notificará con un pitido cuando el sistema se vaya a dormir, no hay pitido en todas las notificaciones, me temo ...)

  1. Copie y pegue el siguiente 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. dentro gedit

  3. Guárdelo como sleep-beepen su directorio de Documentos
  4. Presione Ctrl+ Alt+ Tpara ir a una terminal
  5. Haga que el script sea ejecutable y luego cópielo en el directorio correcto:

    sudo chmod +x ~/Documents/sleep-beep
    sudo cp ~/Documents/sleep-beep /etc/pm/sleep.d/sleep-beep
    
  6. Como necesita reproducir archivos ogg desde la línea de comandos, también necesita:

    sudo apt-get install vorbis-tools
    

¡Hecho! :-)

Fabby
fuente
¿Qué resume ese deshielo? ¿Y de dónde obtiene el script los $ 1?
Ashhar Hasan
@AshharHasan: ¿Me estás acosando? ;-) Lo obtiene de otro guión ... : D
Fabby
1
Leeré algo de documentación ahora, supongo. Acabo de ver esta pregunta y parecía algo que desearía.
Ashhar Hasan
¡Si! ¡RTFM siempre es bueno! ;-) ¡ Pero la votación es aún mejor! @AshharHasan
Fabby