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.116.62.169
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
help /
gl /
zenity /
Delete
Unzip
Name
Size
Permission
Date
Action
figures
[ DIR ]
drwxr-xr-x
2022-01-26 17:33
calendar.page
2.47
KB
-rw-r--r--
2018-10-30 18:06
color-selection.page
1.56
KB
-rw-r--r--
2018-10-30 18:06
entry.page
1.82
KB
-rw-r--r--
2018-10-30 18:06
error.page
1022
B
-rw-r--r--
2018-10-30 18:06
file-selection.page
2.41
KB
-rw-r--r--
2018-10-30 18:06
forms.page
2.54
KB
-rw-r--r--
2018-10-30 18:06
index.page
1.05
KB
-rw-r--r--
2018-10-30 18:06
info.page
1.05
KB
-rw-r--r--
2018-10-30 18:06
intro.page
1.26
KB
-rw-r--r--
2018-10-30 18:06
legal.xml
2.88
KB
-rw-r--r--
2018-10-30 18:06
list.page
2.95
KB
-rw-r--r--
2018-10-30 18:06
message.page
807
B
-rw-r--r--
2018-10-30 18:06
notification.page
2.29
KB
-rw-r--r--
2018-10-30 18:06
password.page
1.47
KB
-rw-r--r--
2018-10-30 18:06
progress.page
2.35
KB
-rw-r--r--
2018-10-30 18:06
question.page
1.01
KB
-rw-r--r--
2018-10-30 18:06
scale.page
2.26
KB
-rw-r--r--
2018-10-30 18:06
text.page
2.45
KB
-rw-r--r--
2018-10-30 18:06
usage.page
8.56
KB
-rw-r--r--
2018-10-30 18:06
warning.page
1.04
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="scale" xml:lang="gl"> <info> <link type="guide" xref="index#dialogs"/> <desc>Use a opción <cmd>--scale</cmd>.</desc> <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright"> <mal:name>Fran Dieguez</mal:name> <mal:email>frandieguez@gnome.org</mal:email> <mal:years>2011-2012.</mal:years> </mal:credit> </info> <title>Diálogo de escala</title> <p>Use a opción <cmd>--scale</cmd> para crear un diálogo de escala.</p> <p>O diálogo de escala admite as seguintes opcións:</p> <terms> <item> <title><cmd>--text</cmd>=<var>TEXTO</var></title> <p>EStabeleza o texto do diálogo. (Predeterminado: «Axustar o valor da escala»)</p> </item> <item> <title><cmd>--value</cmd>=<var>VALOR</var></title> <p>Set initial value. (Default: 0) You must specify value between minimum value to maximum value.</p> </item> <item> <title><cmd>--min-value</cmd>=<var>VALOR</var></title> <p>Estableza o valor mínimo. (Predeteminado: 0)</p> </item> <item> <title><cmd>--max-value</cmd>=<var>VALUE</var></title> <p>Set maximum value. (Default: 100)</p> </item> <item> <title><cmd>--step</cmd>=<var>VALUE</var></title> <p>Set step size. (Default: 1)</p> </item> <item> <title><cmd>--print-partial</cmd></title> <p>Print value to standard output, whenever a value is changed. </p> </item> <item> <title><cmd>--hide-value</cmd></title> <p>Ocultar o valor nun diálogo.</p> </item> </terms> <p>O seguinte script de exemplo mostra como se crea un diálogo de calendario:</p> <code> #!/bin/sh VALUE=`zenity --scale --text="Select window transparency." --value=50` case $? in 0) echo "Seleccionouse $VALUE%.";; 1) echo "Non se seleccionou ningún valor.";; -1) echo "Produciuse un erro non esperado.";; esac </code> <figure> <title>Exemplo de diálogo de escala</title> <desc>Exemplo do diálogo de escala de <app>Zenity</app></desc> <media type="image" mime="image/png" src="figures/zenity-scale-screenshot.png"/> </figure> </page>