Wie kann ich eine benutzerdefinierte Desktop-Benachrichtigung senden?


97

Ich habe ein benutzerdefiniertes Skript und möchte eine Desktop-Benachrichtigung (die oben rechts auf dem Bildschirm angezeigt wird) mit einer benutzerdefinierten Nachricht senden. Wie mache ich das?

Antworten:


149

Es gibt eine Reihe von anderen coolen Funktionen mit notify-send

Wir können einen Befehl ausführen und ihn in der Benachrichtigung anzeigen lassen:

notify-send <title> <`command`>
notify-send Date "`date`"
notify-send Disk "`df / -H`"

Wir können Symbole für die Benachrichtigungen verwenden

notify-send -i <icon> <Message>
notify-send -i face-wink "Hello! January"

Wirklich nerviges Pop-up

notify-send  -t 0 "Bringing down the system"

und

notify-send <title> <message>
notify-send "who am i" "I am January"

Weitere Optionen finden Sie hier


1
Danke. Wo können wir eine Liste von Symbolen erhalten, zB die face-wink, die Sie verwendet haben?
Paddy Landau


notify-send -t 0funktioniert, funktioniert aber notify-send "who am i" "I am January"nicht :( - am ubuntu 15.10
AlikElzin-kilaka

3
Arbeitete mit--urgency=critical
AlikElzin-kilaka

Installation unter Debian sudo apt install libnotify-bin.
User149244

18

Nur um die anderen Antworten zu ergänzen, verwende ich, wenn der Befehl lokal von cron ausgeführt wird

DISPLAY=:0.0 /usr/bin/notify-send "TITLE" "MESSAGE"

12

Ich bin zufällig darauf gestoßen. Antwort: benutze das Programm notify-send:

notify-send "Hello world!"

2

Ich habe ein einfaches und fast natives Skript erstellt, das Sound wiedergibt und eine Benachrichtigung mit einer bestimmten Nachricht und Uhrzeit für Ubuntu ( Gist ) anzeigt :

#!/bin/sh

# https://gist.github.com/John-Almardeny/04fb95eeb969aa46f031457c7815b07d
# Create a Notification With Sound with a Given Message and Time
# The Downloaded Sound is from Notification Sounds https://notificationsounds.com/

MSSG="$1"
TIME="$2"

# install wget if not found
if ! [ -x "$(command -v wget)" ]; then 
    echo -e "INSTALLING WGET...\n\n"
    sudo apt-get install wget
    echo -e "\n\n"
fi

# install at package if not found
if ! [ -x "$(command -v at)" ]; then
    echo -e "INSTALLING AT...\n\n"
    sudo apt-get install at
    echo -e "\n\n"
fi

# install sox if not found
if ! [ -x "$(command -v sox)" ]; then
    echo -e "INSTALLING SOX...\n\n"
    sudo apt-get install sox
    sudo apt-get install sox libsox-fmt-all
    echo -e "\n\n"
fi

# download the noti sound if this is first time
# add alias to the bashrc file
if ! [ -f ~/noti/sound.mp3 ]; then
    echo -e "DOWNLOADING SOUND...\n\n"
    touch ~/noti/sound.mp3 | wget -O ~/noti/sound.mp3 "https://notificationsounds.com/wake-up-tones/rise-and-shine-342/download/mp3"
    sudo echo "alias noti=\"sh ~/noti/noti.sh\"" >> ~/.bashrc
    source ~/.bashrc        
    echo -e "\n\n"
fi

# notify with the sound playing and particular given message and time
echo "notify-send \""$MSSG\"" && play ~/noti/sound.mp3" | at $TIME

Wie benutzt man?

Erster Lauf - Einrichten:

  1. Erstellen Sie ein neues Verzeichnis bei Ihnen zu Hause und rufen Sie es an noti

    mkdir ~/noti
    
  2. Laden Sie noti.sh herunter und extrahieren Sie es in das oben angegebene Verzeichnisnoti .

  3. Öffnen Sie das Terminal und wechseln Sie in das Verzeichnis noti

    cd ~/noti
    
  4. Machen Sie noti.sh ausführbar, indem Sie Folgendes ausführen:

    sudo chmod +x noti.sh
    
  5. Führen Sie einen Test wie folgt aus:

    sh ~/noti/noti.sh "Test" "now"
    

Beispiele

noti "Hello From Noti" "now +1 minute"
noti "Hello From Noti" "now +5 minutes"
noti "Hello From Noti" "now + 1 hour"
noti "Hello From Noti" "now + 2 days"
noti "Hello From Noti" "4 PM + 2 days"
noti "Hello From Noti" "now + 3 weeks"
noti "Hello From Noti" "now + 4 months"
noti "Hello From Noti" "4:00 PM"
noti "Hello From Noti" "2:30 AM tomorrow"
noti "Hello From Noti" "2:30 PM Fri"
noti "Hello From Noti" "2:30 PM 25.07.18"

Zum Benachrichtigen über das Ende des Prozesses (Beispiel)

sudo apt-get update; noti "Done" "now"
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.