Comment avertir (bruit / bip) lorsque Ubuntu est sur le point de passer en mode veille?


8

J'ai un timing très bas en mode veille. Je l'aime comme ça ... (c'est comme 20 minutes).

Après 20 minutes d'inactivité, mon système passe en mode veille automatique et je dois appuyer sur le clavier pour le réactiver.

Existe-t-il un moyen de faire un bruit / bip quand Ubuntu est sur le point de passer en mode veille?

Je reçois un avertissement de notification avec du texte, mais je ne regarde souvent pas l'écran.

Réponses:


3

Alors que l'équipe NotifyOSD prend son temps pour ajouter du son aux notifications, voici un script qui accomplira la même chose assez bien pour votre cas d'utilisation particulier.
(Il ne vous avertira avec un bip que lorsque le système se mettra en veille, pas de bip sur toutes les notifications, je le crains ...)

  1. Copiez-collez le script suivant:

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

  3. Enregistrez-le comme sleep-beepdans votre répertoire Documents
  4. Appuyez sur Ctrl+ Alt+ Tpour accéder à un terminal
  5. Rendez le script exécutable puis copiez-le dans le bon répertoire:

    sudo chmod +x ~/Documents/sleep-beep
    sudo cp ~/Documents/sleep-beep /etc/pm/sleep.d/sleep-beep
    
  6. Comme il doit lire les fichiers ogg à partir de la ligne de commande, il a également besoin:

    sudo apt-get install vorbis-tools
    

Terminé! :-)


Qu'est-ce que ça reprend | dégel? Et d'où le script tire-t-il le $ 1?
Ashhar Hasan

@AshharHasan: Vous me traquez ??? ;-) Il l'obtient d'un autre script ... : D
Fabby

1
Je vais lire une documentation maintenant, je suppose. Je viens de voir cette question et semblait être quelque chose que je voudrais.
Ashhar Hasan

Oui! RTFM est toujours bon! ;-) Mais le vote est encore mieux! @AshharHasan
Fabby
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.