1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/notify-send.md

20 lines
521 B
Markdown
Raw Normal View History

2016-01-25 08:50:52 -06:00
# notify-send
2016-01-25 23:24:26 -06:00
> Uses the current desktop environment's notification system to create a notification.
2016-01-25 08:50:52 -06:00
2016-01-29 14:28:47 +01:00
- Show a notification with the title "Test" and the content "This is a test":
2016-01-25 08:50:52 -06:00
`notify-send "{{Test}}" "{{This is a test}}"`
2016-01-25 08:50:52 -06:00
2016-01-29 14:28:47 +01:00
- Show a notification with a custom icon:
2016-01-25 08:50:52 -06:00
`notify-send -i {{icon.png}} "{{Test}}" "{{This is a test}}"`
2016-01-25 08:50:52 -06:00
2016-01-29 14:28:47 +01:00
- Show a notification for 5 seconds:
2016-01-25 08:50:52 -06:00
`notify-send -t 5000 "{{Test}}" "{{This is a test}}"`
- Show a notification with an app's icon:
`notify-send "{{Test}}" --icon={{google-chrome}}`