Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.143.247.141
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
help /
ja /
zenity /
Delete
Unzip
Name
Size
Permission
Date
Action
figures
[ DIR ]
drwxr-xr-x
2022-01-26 17:33
calendar.page
2.84
KB
-rw-r--r--
2018-10-30 18:06
color-selection.page
1.68
KB
-rw-r--r--
2018-10-30 18:06
entry.page
2.07
KB
-rw-r--r--
2018-10-30 18:06
error.page
1.09
KB
-rw-r--r--
2018-10-30 18:06
file-selection.page
2.63
KB
-rw-r--r--
2018-10-30 18:06
forms.page
2.86
KB
-rw-r--r--
2018-10-30 18:06
index.page
1.07
KB
-rw-r--r--
2018-10-30 18:06
info.page
1.13
KB
-rw-r--r--
2018-10-30 18:06
intro.page
1.31
KB
-rw-r--r--
2018-10-30 18:06
legal.xml
2.85
KB
-rw-r--r--
2018-10-30 18:06
list.page
3.33
KB
-rw-r--r--
2018-10-30 18:06
message.page
865
B
-rw-r--r--
2018-10-30 18:06
notification.page
2.32
KB
-rw-r--r--
2018-10-30 18:06
password.page
1.63
KB
-rw-r--r--
2018-10-30 18:06
progress.page
2.74
KB
-rw-r--r--
2018-10-30 18:06
question.page
1.06
KB
-rw-r--r--
2018-10-30 18:06
scale.page
2.53
KB
-rw-r--r--
2018-10-30 18:06
text.page
2.76
KB
-rw-r--r--
2018-10-30 18:06
usage.page
9.8
KB
-rw-r--r--
2018-10-30 18:06
warning.page
1.13
KB
-rw-r--r--
2018-10-30 18:06
Save
Rename
<?xml version="1.0" encoding="utf-8"?> <page xmlns="http://projectmallard.org/1.0/" type="topic" id="notification" xml:lang="ja"> <info> <link type="guide" xref="index#dialogs"/> <desc><cmd>--notification</cmd> オプションの使用</desc> <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright"> <mal:name>赤星 柔充</mal:name> <mal:email>yasumichi@vinelinux.org</mal:email> <mal:years>2011,2012</mal:years> </mal:credit> </info> <title>通知アイコン</title> <p>通知アイコンを作成するには、<cmd>--notification</cmd> というオプションを使ってください。</p> <terms> <item> <title><cmd>--text</cmd>=<var>テキスト</var></title> <p>通知領域に表示するテキストを指定します。</p> </item> <item> <title><cmd>--listen</cmd>=icon: '<var>text</var>', message: '<var>text</var>', tooltip: '<var>text</var>', visible: '<var>text</var>',</title> <p>Listens for commands at standard input. At least one command must be specified. Commands are comma separated. A command must be followed by a colon and a value. </p> <note style="tip"> <p>The <cmd>icon</cmd> command also accepts four stock icon values such as <var>error</var>, <var>info</var>, <var>question</var> and <var>warning</var>.</p> </note> </item> </terms> <p>以下のスクリプトの例で通知アイコンの作成方法を示します。</p> <code> #!/bin/sh zenity --notification\ --window-icon="info" \ --text="There are system updates necessary!" </code> <figure> <title>通知アイコンの例</title> <desc><app>Zenity</app> 通知アイコンの例</desc> <media type="image" mime="image/png" src="figures/zenity-notification-screenshot.png"/> </figure> <p>The following example script shows how to create a notification icon along with <cmd>--listen</cmd>:</p> <code> #!/bin/sh cat <<EOH| zenity --notification --listen message: this is the message text EOH </code> <figure> <title>Notification Icon with <cmd>--listen</cmd> Example</title> <desc><app>Zenity</app> notification with <cmd>--listen</cmd> example</desc> <media type="image" mime="image/png" src="figures/zenity-notification-listen-screenshot.png"/> </figure> </page>