답변:
Jaunty에서 새 알림 시스템을 사용하는 경우 notify-send 명령 을 원합니다
notify-send - a program to send desktop notifications
SYNOPSIS
With notify-send you can sends desktop notifications to the user via
a notification daemon from the command line. These notifications can be
used to inform the user about an event or display some form of information
without getting in the user's way.
OPTIONS
-u, --urgency=LEVEL
Specifies the urgency level (low, normal, critical).
-t, --expire-time=TIME
Specifies the timeout in milliseconds at which to expire the notification.
-i, --icon=ICON[,ICON...]
Specifies an icon filename or stock icon to display.
-c, --category=TYPE[,TYPE...]
Specifies the notification category.
notify-send
비디오 / 오디오 재생 중에 억제된다. 이것은 유효한 유스 케이스이지만 여전히보고 싶다면 --urgency = critical 을 추가해야합니다.
창을 팝업하는 xmessage 도 있으므로 모든 X11 시스템에서 작동해야합니다.
Pro : 대화식으로 사용자에게 버튼을 표시 할 수도 있습니다.
단점 : 다른 팝업 경고와 마찬가지로 일반적으로 포커스를 받기 때문에 입력하는 동안 메시지를 읽기 전에 사라질 수 있습니다.
notify-send --expire-time=0 "Hello World"
또는 notify-send -t 0 "Hello world"
. 그렇지 않으면, -t
바보 같은 "디자인 결정"으로 인해 옵션이 무시됩니다. askubuntu.com/questions/110969/notify-send-ignores-timeout
notify-send "Hello world"
출처 : https://superuser.com/a/31919/425838
[창은 자동 초점을 얻지 못합니다]
notify-send -t 0 "Hello world"
출처 : 나 자신; 참고 : -t
0- 어리 석음을 제외한 모든 값에 대해서는 무시됩니다 . :(
또는
[창이 자동 초점을 얻음]
zenity --info --title "Hello" --text "World"
출처 : https://askubuntu.com/a/804475/327339
또는
--timeout
초 단위로 지정된 시간이 지나면 창이 자동으로 닫히므로 즐겨 찾기 ]zenity --info --title "Hello" --text "World" --timeout=2
출처 : 나 자신의 매뉴얼 페이지를 읽고 : man zenity
또는
[슈퍼 추악한]
xmessage 'hello world'