web-dev-qa-db-ja.com

カスタムデスクトップ通知を送信するにはどうすればよいですか?

カスタムスクリプトがあり、デスクトップ通知(画面の右上隅に表示されるもの)とカスタムメッセージを送信したい。それ、どうやったら出来るの?

95
January

notify-send には他にもたくさんのクールな機能があります

コマンドを実行して、通知に表示することができます。

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

通知にアイコンを使用できます

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

本当に迷惑なポップアップ

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

そして

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

その他のオプションについては、 here を確認してください

147
devav2

他の回答に追加するために、cronからローカルでコマンドを実行するとき、

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

私は偶然そのことにつまずいた。回答:プログラムを使用してください notify-send

notify-send "Hello world!"
12
January

サウンドを再生し、Ubuntu用のメッセージと時間を指定した通知を表示するシンプルでほぼネイティブのスクリプトを作成しました( Gist ):

#!/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

使い方?

最初の実行-セットアップ:

  1. 自宅で新しいディレクトリを作成し、notiと呼びます

    mkdir ~/noti
    
  2. noti.sh をダウンロードし、上記のnoti dirに展開します。

  3. ターミナルを開き、ディレクトリをnotiに変更します

    cd ~/noti
    
  4. 次を発行してnoti.shを実行可能にします。

    Sudo chmod +x noti.sh
    
  5. 次のようなテストを実行します。

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

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"

プロセスの終了を通知する場合(例)

Sudo apt-get update; noti "Done" "now"
2
Yahya