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 : 18.189.185.100
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
help /
es /
zenity /
Delete
Unzip
Name
Size
Permission
Date
Action
figures
[ DIR ]
drwxr-xr-x
2022-01-26 17:33
calendar.page
3.26
KB
-rw-r--r--
2018-10-30 18:06
color-selection.page
2.33
KB
-rw-r--r--
2018-10-30 18:06
entry.page
2.58
KB
-rw-r--r--
2018-10-30 18:06
error.page
1.73
KB
-rw-r--r--
2018-10-30 18:06
file-selection.page
3.16
KB
-rw-r--r--
2018-10-30 18:06
forms.page
3.33
KB
-rw-r--r--
2018-10-30 18:06
index.page
1.78
KB
-rw-r--r--
2018-10-30 18:06
info.page
1.79
KB
-rw-r--r--
2018-10-30 18:06
intro.page
1.99
KB
-rw-r--r--
2018-10-30 18:06
legal.xml
3.31
KB
-rw-r--r--
2018-10-30 18:06
list.page
3.72
KB
-rw-r--r--
2018-10-30 18:06
message.page
1.52
KB
-rw-r--r--
2018-10-30 18:06
notification.page
3.09
KB
-rw-r--r--
2018-10-30 18:06
password.page
2.19
KB
-rw-r--r--
2018-10-30 18:06
progress.page
3.19
KB
-rw-r--r--
2018-10-30 18:06
question.page
1.75
KB
-rw-r--r--
2018-10-30 18:06
scale.page
3.07
KB
-rw-r--r--
2018-10-30 18:06
text.page
3.23
KB
-rw-r--r--
2018-10-30 18:06
usage.page
9.59
KB
-rw-r--r--
2018-10-30 18:06
warning.page
1.79
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="es"> <info> <link type="guide" xref="index#dialogs"/> <desc>Use la opción <cmd>--notification</cmd>.</desc> <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright"> <mal:name>Daniel Mustieles</mal:name> <mal:email>daniel.mustieles@gmail.com</mal:email> <mal:years>2012-2014</mal:years> </mal:credit> <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright"> <mal:name>Jorge González</mal:name> <mal:email>jorgegonz@svn.gnome.org</mal:email> <mal:years>2007-2010</mal:years> </mal:credit> <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright"> <mal:name>Alejandro Aravena</mal:name> <mal:email>raidenblast@gmail.com</mal:email> <mal:years>2005</mal:years> </mal:credit> <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright"> <mal:name>QA: Francisco Javier F. Serrador</mal:name> <mal:email>serrador@cvs.gnome.org</mal:email> <mal:years>2005</mal:years> </mal:credit> </info> <title>Icono de notificación</title> <p>Use la opción <cmd>--notification</cmd> para crear un icono de notificación.</p> <terms> <item> <title><cmd>--text</cmd>=<var>texto</var></title> <p>Especifica el texto que se mostrara en el área de la notificación.</p> </item> <item> <title><cmd>--listen</cmd>=icon: «<var>texto</var>», message: «<var>texto</var>», tooltip: «<var>texto</var>», visible: «<var>texto</var>»,</title> <p>Escucha comandos en la entrada estándar. Se debe especificar al menos un comando. Los comandos se separan mediante comas. Un comando debe ir seguido de dos puntos y un valor.</p> <note style="tip"> <p>El comando <cmd>icon</cmd> también acepta cuatro valores de iconos del almacén, tales como <var>error</var>, <var>info</var>, <var>question</var> y <var>warning</var>.</p> </note> </item> </terms> <p>El siguiente script de ejemplo muestra cómo crear un icono de notificación:</p> <code> #!/bin/sh zenity --notification\ --window-icon="info" \ --text="Hay actualizaciones necesarias para su sistema" </code> <figure> <title>Ejemplo de icono de notificación</title> <desc>Ejemplo del icono de notificación de <app>Zenity</app></desc> <media type="image" mime="image/png" src="figures/zenity-notification-screenshot.png"/> </figure> <p>El siguiente script de ejemplo muestra cómo crear un icono de notificación con <cmd>--listen</cmd>:</p> <code> #!/bin/sh cat <<EOH| zenity --notification --listen message: este es el mensaje de texto EOH </code> <figure> <title>Ejemplo de icono de notificación con <cmd>--listen</cmd></title> <desc>Ejemplo del icono de notificación de <app>Zenity</app> con <cmd>--listen</cmd></desc> <media type="image" mime="image/png" src="figures/zenity-notification-listen-screenshot.png"/> </figure> </page>