Latest revision as of 16:12, 3 February 2024
Information about message (contribute ) This message has no documentation.
If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Basic Tips for conky )
'''2.''' You can call the default font (and it's size) with this command: {{File|file=~/.config/conky/conky.conf| content=<pre>conky.text = [[ ... $font ... ]];</pre> }} If you want a different font (DejaVuSerif) and font size (9) in your conky, use this command in your <code>.conf</code> code: {{File|file=~/.config/conky/conky.conf| content=<pre>conky.text = [[ ... ${font DejaVuSerif:size=9} ... ]];</pre> }} '''3.''' This code line displays the text "Kernel: " and the kernel you are using (using <code>$alignr</code> just yields a nicer formatting, it is not necessary: <code>$alignr</code> aligns all following text on the right of your conky): {{File|file=~/.config/conky/conky.conf| content=<pre>conky.text = [[ Kernel: ${alignr}${kernel} ]];</pre> }} '''4.''' This variable gives you the latest 3 manjaro blog entry titles (using rss). It checks for updates every 60 minutes. {{File|file=~/.config/conky/conky.conf| content=<pre>conky.text = [[ ${rss http://manjaro.org/feed/ 60 item_titles 3} ]];</pre> }} '''5.''' Information about the root partition <code>/</code> of your manjaro installation is displayed using {{File|file=~/.config/conky/conky.conf| content=<pre>conky.text = [[ Root: ${alignr}${fs_used /} of ${fs_size /} ]];</pre> }} '''6.''' Instead of example 3, you can use the following code to display the exact same information: {{File|file=~/.config/conky/conky.conf| content=<pre>conky.text = [[ Kernel: ${alignr}${execi 3600 uname -r} ]];</pre> }}
'''2.''' You can call the default font (and it's size) with this command:
{{File|file=~/.config/conky/conky.conf|
content=<pre>conky.text = [[
...
$font
...
]];</pre>
}}
If you want a different font (DejaVuSerif) and font size (9) in your conky, use this command in your <code>.conf</code> code:
{{File|file=~/.config/conky/conky.conf|
content=<pre>conky.text = [[
...
${font DejaVuSerif:size=9}
...
]];</pre>
}}
'''3.''' This code line displays the text "Kernel: " and the kernel you are using (using <code>$alignr</code> just yields a nicer formatting, it is not necessary: <code>$alignr</code> aligns all following text on the right of your conky):
{{File|file=~/.config/conky/conky.conf|
content=<pre>conky.text = [[
Kernel: ${alignr}${kernel}
]];</pre>
}}
'''4.''' This variable gives you the latest 3 manjaro blog entry titles (using rss). It checks for updates every 60 minutes.
{{File|file=~/.config/conky/conky.conf|
content=<pre>conky.text = [[
${rss http://manjaro.org/feed/ 60 item_titles 3}
]];</pre>
}}
'''5.''' Information about the root partition <code>/</code> of your manjaro installation is displayed using
{{File|file=~/.config/conky/conky.conf|
content=<pre>conky.text = [[
Root: ${alignr}${fs_used /} of ${fs_size /}
]];</pre>
}}
'''6.''' Instead of example 3, you can use the following code to display the exact same information:
{{File|file=~/.config/conky/conky.conf|
content=<pre>conky.text = [[
Kernel: ${alignr}${execi 3600 uname -r}
]];</pre>
}} 2. Puedes llamar la fuente por defecto (y su tamaño) con este comando:
~/.config/conky/conky.conf
conky.text = [[
...
$font
...
]];
Si quieres usar una fuente diferente (DejaVuSerif) y el tamaño de ella (9) en tu Conky, usa este comando en el: .conf
escribe:
~/.config/conky/conky.conf
conky.text = [[
...
${font DejaVuSerif:size-9}
...
]];
3. Si la linea de codigo muestra el texto "Kernel" y si estas usando el kernel ($alingnr
solo produce un formato mas agradable y suave, no es necesario: $alingr
alinea este texto a la derecha de tu Conky):
~/.conky/conky/conky.conf
conky.text = [[
Kernel: ${alingr}${kernel}
]];
4. Esta variable te muestra las ultimas 3 entradas mas recientes del blog de Manjaro (usando rss). Esto verifica actualizaciones cada 60 minutos.
~/.config/conky/conky.conf
5. Información sobre la partición root /
de tu instalación de Manjaro es mostrada usando:
~/.config/conky/conky.conf
conky.text = [[
Root: ${alingr}${fs_used /} of ${fs_size /}
]];
6. En cambio del ejemplo 3, puedes seguir esta linea de codigo para mostrar la misma información:
~/.config/conky/conky.conf
conky.text = [[
Kernel: ${alingnr}${execi 3600 uname -r}
]];