Forrest logo
back to context overview

notify-send

List of commands for notify-send:

  • notify-send:tldr:239e6 notify-send: Show a notification with the title "Test" and the content "This is a test".
    $ notify-send "${Test}" "${This is a test}"
    try on your machine
    explain this command
  • notify-send:tldr:49e93 notify-send: Show a notification for 5 seconds.
    $ notify-send -t 5000 "${Test}" "${This is a test}"
    try on your machine
    explain this command
  • notify-send:tldr:5b709 notify-send: Show a notification with a custom icon.
    $ notify-send -i ${icon-png} "${Test}" "${This is a test}"
    try on your machine
    explain this command
  • notify-send:tldr:e98b2 notify-send: Show a notification with an app's icon and name.
    $ notify-send "${Test}" --icon=${google-chrome} --app-name="${Google Chrome}"
    try on your machine
    explain this command
back to context overview