<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.manjaro.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=CassioGangrel</id>
	<title>Manjaro - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.manjaro.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=CassioGangrel"/>
	<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php/Special:Contributions/CassioGangrel"/>
	<updated>2026-05-10T00:40:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Basic_Tips_for_conky/pt-br&amp;diff=49857</id>
		<title>Basic Tips for conky/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Basic_Tips_for_conky/pt-br&amp;diff=49857"/>
		<updated>2023-12-25T00:09:36Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;Dicas Básicas para o Conky&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
==Instalação==&lt;br /&gt;
O Conky pode ser instalado usando o gerenciador de pacotes&lt;br /&gt;
{{UserCmd|command=pamac install conky}}&lt;br /&gt;
&lt;br /&gt;
===Configuração===&lt;br /&gt;
Todos os nomes de arquivos que começam com um ponto &amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt; são arquivos ocultos. Se você deseja ver arquivos ocultos no seu gerenciador de arquivos, precisa torná-los visíveis. Na maioria dos gerenciadores de arquivos, isso estará disponível nas opções.&lt;br /&gt;
====Arquivo de Configuração====&lt;br /&gt;
O arquivo de configuração padrão está localizado em {{ic|/usr/share/doc/conky-1.11.5_pre/conky.conf}}, onde as versões estão sujeitas a alterações. &lt;br /&gt;
O Conky não cria uma pasta local do Conky, então você terá que criar antecipadamente&lt;br /&gt;
{{UserCmd|command=mkdir -p ~/.config/conky}}&lt;br /&gt;
Em seguida, copie o padrão para o diretório pessoal&lt;br /&gt;
{{UserCmd|command=cp /usr/share/doc/conky-1.11.5_pre/conky.conf ~/.config/conky/conky.conf}}&lt;br /&gt;
O arquivo de configuração é um arquivo de texto simples e o conteúdo é escrito usando a [[https://www.lua.org/ |sintaxe LUA]] e é dividido em duas partes&lt;br /&gt;
&lt;br /&gt;
* Configuração&lt;br /&gt;
* Texto&lt;br /&gt;
&lt;br /&gt;
===Configuração do Conky===&lt;br /&gt;
A primeira parte/superior contém todas as configurações para o Conky inteiro. Coisas como a posição do Conky na tela, configurações de transparência, configurações de borda, a fonte padrão e seu tamanho, e com que frequência o Conky é atualizado. Toda a configuração pertence entre colchetes assim&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Algumas regras se aplicam&lt;br /&gt;
&lt;br /&gt;
* Cada linha termina com &amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;&lt;br /&gt;
* Valores não booleanos/numéricos devem ser colocados entre &amp;lt;code&amp;gt;'&amp;lt;/code&amp;gt;&lt;br /&gt;
* Comentários começam com &amp;lt;code&amp;gt;--&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
===Exemplos===&lt;br /&gt;
'''1.''' Isso definirá a cor padrão da fonte do seu Conky como branca. Além disso, uma &amp;lt;code&amp;gt;color1&amp;lt;/code&amp;gt; será definida usando um [http://html-color-codes.info/ Código de Cor HTML] para um azul claro:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    default_color = 'white',    -- Cor padrão branca&lt;br /&gt;
    color1 = '0ab1ff',          -- Azul claro&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''2.''' Isso ativa o Xft, define a fonte padrão (LiberationMono), deixa em negrito e define seu tamanho (8):&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    use_xft = true,&lt;br /&gt;
    font = 'LiberationMono:bold:size=8',&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''3.''' Para posicionar o Conky na tela, modifique estas configurações:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    alignment = 'top_right',     -- O Conky é colocado no canto superior direito da sua área de trabalho&lt;br /&gt;
    gap_x 18,                    -- com um espaço horizontal de 18 pixels (para a borda direita da tela)&lt;br /&gt;
    gap_y 20,                    -- e um espaço vertical de 20 pixels (para a borda superior da tela).&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''4.''' Em alguns casos, você pode ter vários valores para uma configuração, eles serão separados por uma vírgula:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager,below',&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Use o comando: &amp;lt;code&amp;gt;man conky&amp;lt;/code&amp;gt;, e olhe para a seção '''CONFIGURATION SETTINGS''' para ver todas as configurações disponíveis.&lt;br /&gt;
&lt;br /&gt;
===Texto do Conky===&lt;br /&gt;
A segunda parte contém o código exibido pelo Conky. Cada linha de código corresponde a uma linha exibida na sua área de trabalho. Há muitas opções disponíveis para exibir e modificar todos os tipos de informações. Use o comando: &amp;lt;code&amp;gt;man conky&amp;lt;/code&amp;gt;, e procure a seção '''OBJECTS/VARIABLES''' para ver todas as variáveis/objetos disponíveis.&lt;br /&gt;
{{BoxInfo|Informação|As linhas na seção '''conky.text''' são impressas exatamente como estão. Por exemplo, se você criar uma linha vazia entre as seções, o Conky exibirá uma linha vazia.}}&lt;br /&gt;
&lt;br /&gt;
O código completo deve estar entre esses dois pares de colchetes duplos:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
===Exemplos===&lt;br /&gt;
'''1.''' Você pode escolher a cor da sua fonte usando uma das seguintes variáveis:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
${color}&lt;br /&gt;
${color1}&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Cada variável é marcada com um sinal de &amp;lt;code&amp;gt;$&amp;lt;/code&amp;gt; e com chaves &amp;lt;code&amp;gt;{ }&amp;lt;/code&amp;gt; (apenas necessário se a variável contiver mais de uma palavra).&lt;br /&gt;
&lt;br /&gt;
''2.''' Você pode chamar a fonte padrão (e seu tamanho) com este comando:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
$font&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Se você deseja usar uma fonte diferente (DejaVuSerif) e um tamanho de fonte diferente (9) no seu Conky, use este comando no seu código &amp;lt;code&amp;gt;.conf&amp;lt;/code&amp;gt;:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
${font DejaVuSerif:size=9}&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''3.''' Esta linha de código exibe o texto &amp;quot;Kernel: &amp;quot; e o kernel que você está usando (usar &amp;lt;code&amp;gt;$alignr&amp;lt;/code&amp;gt; apenas proporciona uma formatação mais agradável, não é necessário: &amp;lt;code&amp;gt;$alignr&amp;lt;/code&amp;gt; alinha todo o texto seguinte à direita do seu Conky):&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Kernel: ${alignr}${kernel}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''4.''' Esta variável fornece os títulos das últimas 3 entradas do blog do Manjaro (usando RSS). Verifica atualizações a cada 60 minutos.&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
${rss http://manjaro.org/feed/ 60 item_titles 3}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''5.''' Informações sobre a partição raiz &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; da sua instalação Manjaro são exibidas usando&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Root: ${alignr}${fs_used /} de ${fs_size /}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''6.''' Em vez do exemplo 3, você pode usar o seguinte código para exibir exatamente as mesmas informações:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Kernel: ${alignr}${execi 3600 uname -r}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===execi===&lt;br /&gt;
A variável &amp;lt;code&amp;gt;${execi 3600 XXXX}&amp;lt;/code&amp;gt; executa o código Bash &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; no seu terminal a cada 3600 segundos e exibe o resultado no seu Conky. O resultado do comando Bash &amp;lt;code&amp;gt;uname -r&amp;lt;/code&amp;gt; é o nome do kernel atualmente utilizado. &lt;br /&gt;
&lt;br /&gt;
Use qualquer comando Bash no lugar de &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; que você possa imaginar. Os comandos Bash podem ser tão longos e complicados quanto você desejar. &lt;br /&gt;
&lt;br /&gt;
{{BoxInfo|Aviso|O uso de comandos Bash complicados (por exemplo, que chamam outros programas ou usam arquivos grandes) com intervalos curtos (por exemplo, &amp;lt;code&amp;gt;${execi 2 XXXX}&amp;lt;/code&amp;gt; executa o código &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; a cada 2 segundos e exibe o resultado no seu Conky) pode consumir muitos recursos de hardware e/ou tornar seu computador irresponsivo.}}&lt;br /&gt;
&lt;br /&gt;
===Running conky===&lt;br /&gt;
Se você deseja exibir um Conky na sua área de trabalho, é necessário um arquivo {{ic|~/.config/conky/conky.conf}} com código. Em seguida, abra um terminal e execute o Conky apontando para o arquivo&lt;br /&gt;
{{UserCmd|command=conky -c ~/.config/conky/conky.conf}}&lt;br /&gt;
ou para executar como um daemon em segundo plano&lt;br /&gt;
{{UserCmd|command=conky -d -c ~/.config/conky/conky.conf}}&lt;br /&gt;
&lt;br /&gt;
Se você deseja executar o Conky automaticamente após cada inicialização do seu computador, você precisa descobrir como iniciar automaticamente um programa. Isso depende do Gerenciador de Desktop que você está usando. Abaixo estão exemplos de como executar o Conky a partir da pasta/arquivo/script/comando de inicialização automática do sistema.&lt;br /&gt;
&amp;lt;code&amp;gt;sleep 20&amp;lt;/code&amp;gt; e &amp;lt;code&amp;gt;-p 20&amp;lt;/code&amp;gt; atrasam o início do Conky em 20 segundos após o início do seu Ambiente de Desktop. Ajuste esse valor conforme sua preferência.&lt;br /&gt;
&lt;br /&gt;
{{UserCmd|command=conky -c ~/.config/conky/conky.conf &amp;amp;}}&lt;br /&gt;
{{UserCmd|command=sleep 20 &amp;amp;&amp;amp; conky -c ~/.config/conky/conky.conf &amp;amp;}}&lt;br /&gt;
&lt;br /&gt;
Quando você altera o arquivo de configuração em execução do Conky, o Conky será recarregado. No entanto, se você alterou um dos scripts de dependência (por exemplo, porque alterou uma variável e quer ver as consequências), você terá que recarregar o Conky.&lt;br /&gt;
{{UserCmd|command=killall conky &amp;amp;&amp;amp; conky -c ~/.config/config/conky.conf}}&lt;br /&gt;
&lt;br /&gt;
===Solução de Problemas e Dicas===&lt;br /&gt;
&lt;br /&gt;
====Anéis ausentes====&lt;br /&gt;
&lt;br /&gt;
Para poder usar scripts LUA para executar funções de desenho como anéis de relógio - você precisará de um pacote conky compilado com suporte LUA. Você pode construir o pacote {{ic|conky-lua}} do [[Arch_User_Repository|AUR]] ou instalar o {{ic|conky-lua-nv}} do repositório oficial.&lt;br /&gt;
&lt;br /&gt;
====Informações de Rede Ausentes====&lt;br /&gt;
Se as informações de rede estiverem ausentes, como a velocidade de download ou o nome da rede (SSID), você precisa substituir as interfaces de rede no arquivo de configuração pelo nome da sua interface de rede. Para obter os nomes das suas interfaces, abra um terminal e execute&lt;br /&gt;
{{UserCmd|command=ip a | grep ' state UP' | cut -d' ' -f2 | cut -d':' -f1}}&lt;br /&gt;
Use a saída do comando. Nomes de interface que começam com &amp;lt;code&amp;gt;en&amp;lt;/code&amp;gt; são interfaces Ethernet e nomes que começam com &amp;lt;code&amp;gt;wl&amp;lt;/code&amp;gt; são interfaces sem fio. Substitua todos os nomes de interfaces de rede (por exemplo, &amp;lt;code&amp;gt;wlan0&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;eth0&amp;lt;/code&amp;gt;) na seção de texto do seu arquivo &amp;lt;code&amp;gt;.conf&amp;lt;/code&amp;gt; pelo(s) nome(s) da interface que você obteve no comando acima.&lt;br /&gt;
&lt;br /&gt;
===Conky Manager===&lt;br /&gt;
Existe um aplicativo chamado Conky Manager, mas não foi atualizado por anos, e as configurações encontradas no pacote podem funcionar ou não. Você pode instalá-lo - ele pode ser usado como inspiração, mas você não deve depender dele. Se você ainda acha que é essencial, você pode construir o pacote {{ic|conky-manager}} usando o [[Arch_User_Repository|AUR]].&lt;br /&gt;
{{UserCmd|command=pamac build conky-manager}}&lt;br /&gt;
&lt;br /&gt;
==Veja Também==&lt;br /&gt;
* O [https://github.com/brndnmtthws/conky/wiki site do Conky]&lt;br /&gt;
* A página do Conky na [https://wiki.archlinux.org/index.php/conky Wiki do Arch]&lt;br /&gt;
[[Category:Contents Page{{#translation:}}]]&lt;br /&gt;
[[Category:Applications{{#translation:}}]]&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/48/pt-br&amp;diff=49856</id>
		<title>Translations:Basic Tips for conky/48/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/48/pt-br&amp;diff=49856"/>
		<updated>2023-12-24T16:14:30Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;{{BoxInfo|Aviso|O uso de comandos Bash complicados (por exemplo, que chamam outros programas ou usam arquivos grandes) com intervalos curtos (por exemplo, &amp;lt;code&amp;gt;${execi 2 XXXX...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{BoxInfo|Aviso|O uso de comandos Bash complicados (por exemplo, que chamam outros programas ou usam arquivos grandes) com intervalos curtos (por exemplo, &amp;lt;code&amp;gt;${execi 2 XXXX}&amp;lt;/code&amp;gt; executa o código &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; a cada 2 segundos e exibe o resultado no seu Conky) pode consumir muitos recursos de hardware e/ou tornar seu computador irresponsivo.}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/47/pt-br&amp;diff=49855</id>
		<title>Translations:Basic Tips for conky/47/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/47/pt-br&amp;diff=49855"/>
		<updated>2023-12-24T16:14:09Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;Use qualquer comando Bash no lugar de &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; que você possa imaginar. Os comandos Bash podem ser tão longos e complicados quanto você desejar.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Use qualquer comando Bash no lugar de &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; que você possa imaginar. Os comandos Bash podem ser tão longos e complicados quanto você desejar.&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/46/pt-br&amp;diff=49854</id>
		<title>Translations:Basic Tips for conky/46/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/46/pt-br&amp;diff=49854"/>
		<updated>2023-12-24T16:13:52Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;===execi=== A variável &amp;lt;code&amp;gt;${execi 3600 XXXX}&amp;lt;/code&amp;gt; executa o código Bash &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; no seu terminal a cada 3600 segundos e exibe o resultado no seu Conky. O resul...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===execi===&lt;br /&gt;
A variável &amp;lt;code&amp;gt;${execi 3600 XXXX}&amp;lt;/code&amp;gt; executa o código Bash &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; no seu terminal a cada 3600 segundos e exibe o resultado no seu Conky. O resultado do comando Bash &amp;lt;code&amp;gt;uname -r&amp;lt;/code&amp;gt; é o nome do kernel atualmente utilizado.&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/45/pt-br&amp;diff=49853</id>
		<title>Translations:Basic Tips for conky/45/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/45/pt-br&amp;diff=49853"/>
		<updated>2023-12-24T16:13:29Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;''2.''' Você pode chamar a fonte padrão (e seu tamanho) com este comando: {{File|file=~/.config/conky/conky.conf| content=&amp;lt;pre&amp;gt;conky.text =  ... $font ... ;&amp;lt;/pre&amp;gt; }} Se...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''2.''' Você pode chamar a fonte padrão (e seu tamanho) com este comando:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
$font&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Se você deseja usar uma fonte diferente (DejaVuSerif) e um tamanho de fonte diferente (9) no seu Conky, use este comando no seu código &amp;lt;code&amp;gt;.conf&amp;lt;/code&amp;gt;:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
${font DejaVuSerif:size=9}&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''3.''' Esta linha de código exibe o texto &amp;quot;Kernel: &amp;quot; e o kernel que você está usando (usar &amp;lt;code&amp;gt;$alignr&amp;lt;/code&amp;gt; apenas proporciona uma formatação mais agradável, não é necessário: &amp;lt;code&amp;gt;$alignr&amp;lt;/code&amp;gt; alinha todo o texto seguinte à direita do seu Conky):&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Kernel: ${alignr}${kernel}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''4.''' Esta variável fornece os títulos das últimas 3 entradas do blog do Manjaro (usando RSS). Verifica atualizações a cada 60 minutos.&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
${rss http://manjaro.org/feed/ 60 item_titles 3}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''5.''' Informações sobre a partição raiz &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; da sua instalação Manjaro são exibidas usando&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Root: ${alignr}${fs_used /} de ${fs_size /}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''6.''' Em vez do exemplo 3, você pode usar o seguinte código para exibir exatamente as mesmas informações:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Kernel: ${alignr}${execi 3600 uname -r}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/44/pt-br&amp;diff=49852</id>
		<title>Translations:Basic Tips for conky/44/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/44/pt-br&amp;diff=49852"/>
		<updated>2023-12-24T16:12:59Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;Cada variável é marcada com um sinal de &amp;lt;code&amp;gt;$&amp;lt;/code&amp;gt; e com chaves &amp;lt;code&amp;gt;{ }&amp;lt;/code&amp;gt; (apenas necessário se a variável contiver mais de uma palavra).&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Cada variável é marcada com um sinal de &amp;lt;code&amp;gt;$&amp;lt;/code&amp;gt; e com chaves &amp;lt;code&amp;gt;{ }&amp;lt;/code&amp;gt; (apenas necessário se a variável contiver mais de uma palavra).&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/43/pt-br&amp;diff=49851</id>
		<title>Translations:Basic Tips for conky/43/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/43/pt-br&amp;diff=49851"/>
		<updated>2023-12-24T16:12:29Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;O código completo deve estar entre esses dois pares de colchetes duplos: {{File|file=~/.config/conky/conky.conf| content=&amp;lt;pre&amp;gt;conky.text =  ;&amp;lt;/pre&amp;gt; }} ===Exemplos=== '''1...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;O código completo deve estar entre esses dois pares de colchetes duplos:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
===Exemplos===&lt;br /&gt;
'''1.''' Você pode escolher a cor da sua fonte usando uma das seguintes variáveis:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
${color}&lt;br /&gt;
${color1}&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/42/pt-br&amp;diff=49850</id>
		<title>Translations:Basic Tips for conky/42/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/42/pt-br&amp;diff=49850"/>
		<updated>2023-12-24T16:12:04Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;===Texto do Conky=== A segunda parte contém o código exibido pelo Conky. Cada linha de código corresponde a uma linha exibida na sua área de trabalho. Há muitas opções...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Texto do Conky===&lt;br /&gt;
A segunda parte contém o código exibido pelo Conky. Cada linha de código corresponde a uma linha exibida na sua área de trabalho. Há muitas opções disponíveis para exibir e modificar todos os tipos de informações. Use o comando: &amp;lt;code&amp;gt;man conky&amp;lt;/code&amp;gt;, e procure a seção '''OBJECTS/VARIABLES''' para ver todas as variáveis/objetos disponíveis.&lt;br /&gt;
{{BoxInfo|Informação|As linhas na seção '''conky.text''' são impressas exatamente como estão. Por exemplo, se você criar uma linha vazia entre as seções, o Conky exibirá uma linha vazia.}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/41/pt-br&amp;diff=49849</id>
		<title>Translations:Basic Tips for conky/41/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/41/pt-br&amp;diff=49849"/>
		<updated>2023-12-24T16:11:31Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;* Cada linha termina com &amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt; * Valores não booleanos/numéricos devem ser colocados entre &amp;lt;code&amp;gt;'&amp;lt;/code&amp;gt; * Comentários começam com &amp;lt;code&amp;gt;--&amp;lt;/code&amp;gt; }} ===Exemplos...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Cada linha termina com &amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;&lt;br /&gt;
* Valores não booleanos/numéricos devem ser colocados entre &amp;lt;code&amp;gt;'&amp;lt;/code&amp;gt;&lt;br /&gt;
* Comentários começam com &amp;lt;code&amp;gt;--&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
===Exemplos===&lt;br /&gt;
'''1.''' Isso definirá a cor padrão da fonte do seu Conky como branca. Além disso, uma &amp;lt;code&amp;gt;color1&amp;lt;/code&amp;gt; será definida usando um [http://html-color-codes.info/ Código de Cor HTML] para um azul claro:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    default_color = 'white',    -- Cor padrão branca&lt;br /&gt;
    color1 = '0ab1ff',          -- Azul claro&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''2.''' Isso ativa o Xft, define a fonte padrão (LiberationMono), deixa em negrito e define seu tamanho (8):&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    use_xft = true,&lt;br /&gt;
    font = 'LiberationMono:bold:size=8',&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''3.''' Para posicionar o Conky na tela, modifique estas configurações:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    alignment = 'top_right',     -- O Conky é colocado no canto superior direito da sua área de trabalho&lt;br /&gt;
    gap_x 18,                    -- com um espaço horizontal de 18 pixels (para a borda direita da tela)&lt;br /&gt;
    gap_y 20,                    -- e um espaço vertical de 20 pixels (para a borda superior da tela).&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''4.''' Em alguns casos, você pode ter vários valores para uma configuração, eles serão separados por uma vírgula:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager,below',&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Use o comando: &amp;lt;code&amp;gt;man conky&amp;lt;/code&amp;gt;, e olhe para a seção '''CONFIGURATION SETTINGS''' para ver todas as configurações disponíveis.&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/40/pt-br&amp;diff=49848</id>
		<title>Translations:Basic Tips for conky/40/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/40/pt-br&amp;diff=49848"/>
		<updated>2023-12-24T16:09:23Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;===Configuração do Conky=== A primeira parte/superior contém todas as configurações para o Conky inteiro. Coisas como a posição do Conky na tela, configurações de tra...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Configuração do Conky===&lt;br /&gt;
A primeira parte/superior contém todas as configurações para o Conky inteiro. Coisas como a posição do Conky na tela, configurações de transparência, configurações de borda, a fonte padrão e seu tamanho, e com que frequência o Conky é atualizado. Toda a configuração pertence entre colchetes assim&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Algumas regras se aplicam&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/56/pt-br&amp;diff=49847</id>
		<title>Translations:Basic Tips for conky/56/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/56/pt-br&amp;diff=49847"/>
		<updated>2023-12-24T16:17:32Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;====Informações de Rede Ausentes==== Se as informações de rede estiverem ausentes, como a velocidade de download ou o nome da rede (SSID), você precisa substituir as inte...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====Informações de Rede Ausentes====&lt;br /&gt;
Se as informações de rede estiverem ausentes, como a velocidade de download ou o nome da rede (SSID), você precisa substituir as interfaces de rede no arquivo de configuração pelo nome da sua interface de rede. Para obter os nomes das suas interfaces, abra um terminal e execute&lt;br /&gt;
{{UserCmd|command=ip a | grep ' state UP' | cut -d' ' -f2 | cut -d':' -f1}}&lt;br /&gt;
Use a saída do comando. Nomes de interface que começam com &amp;lt;code&amp;gt;en&amp;lt;/code&amp;gt; são interfaces Ethernet e nomes que começam com &amp;lt;code&amp;gt;wl&amp;lt;/code&amp;gt; são interfaces sem fio. Substitua todos os nomes de interfaces de rede (por exemplo, &amp;lt;code&amp;gt;wlan0&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;eth0&amp;lt;/code&amp;gt;) na seção de texto do seu arquivo &amp;lt;code&amp;gt;.conf&amp;lt;/code&amp;gt; pelo(s) nome(s) da interface que você obteve no comando acima.&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/57/pt-br&amp;diff=49846</id>
		<title>Translations:Basic Tips for conky/57/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/57/pt-br&amp;diff=49846"/>
		<updated>2023-12-24T16:17:54Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;===Conky Manager=== Existe um aplicativo chamado Conky Manager, mas não foi atualizado por anos, e as configurações encontradas no pacote podem funcionar ou não. Você pod...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Conky Manager===&lt;br /&gt;
Existe um aplicativo chamado Conky Manager, mas não foi atualizado por anos, e as configurações encontradas no pacote podem funcionar ou não. Você pode instalá-lo - ele pode ser usado como inspiração, mas você não deve depender dele. Se você ainda acha que é essencial, você pode construir o pacote {{ic|conky-manager}} usando o [[Arch_User_Repository|AUR]].&lt;br /&gt;
{{UserCmd|command=pamac build conky-manager}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/58/pt-br&amp;diff=49845</id>
		<title>Translations:Basic Tips for conky/58/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/58/pt-br&amp;diff=49845"/>
		<updated>2023-12-24T16:18:26Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;==Veja Também== * O [https://github.com/brndnmtthws/conky/wiki site do Conky] * A página do Conky na [https://wiki.archlinux.org/index.php/conky Wiki do Arch]&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Veja Também==&lt;br /&gt;
* O [https://github.com/brndnmtthws/conky/wiki site do Conky]&lt;br /&gt;
* A página do Conky na [https://wiki.archlinux.org/index.php/conky Wiki do Arch]&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/Page_display_title/pt-br&amp;diff=49844</id>
		<title>Translations:Basic Tips for conky/Page display title/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/Page_display_title/pt-br&amp;diff=49844"/>
		<updated>2023-12-24T16:19:30Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;Dicas Básicas para o Conky&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Dicas Básicas para o Conky&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Basic_Tips_for_conky/pt-br&amp;diff=49843</id>
		<title>Basic Tips for conky/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Basic_Tips_for_conky/pt-br&amp;diff=49843"/>
		<updated>2023-12-25T00:06:47Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;* Configuração * Texto&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
==Instalação==&lt;br /&gt;
O Conky pode ser instalado usando o gerenciador de pacotes&lt;br /&gt;
{{UserCmd|command=pamac install conky}}&lt;br /&gt;
&lt;br /&gt;
===Configuração===&lt;br /&gt;
Todos os nomes de arquivos que começam com um ponto &amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt; são arquivos ocultos. Se você deseja ver arquivos ocultos no seu gerenciador de arquivos, precisa torná-los visíveis. Na maioria dos gerenciadores de arquivos, isso estará disponível nas opções.&lt;br /&gt;
====Arquivo de Configuração====&lt;br /&gt;
O arquivo de configuração padrão está localizado em {{ic|/usr/share/doc/conky-1.11.5_pre/conky.conf}}, onde as versões estão sujeitas a alterações. &lt;br /&gt;
O Conky não cria uma pasta local do Conky, então você terá que criar antecipadamente&lt;br /&gt;
{{UserCmd|command=mkdir -p ~/.config/conky}}&lt;br /&gt;
Em seguida, copie o padrão para o diretório pessoal&lt;br /&gt;
{{UserCmd|command=cp /usr/share/doc/conky-1.11.5_pre/conky.conf ~/.config/conky/conky.conf}}&lt;br /&gt;
O arquivo de configuração é um arquivo de texto simples e o conteúdo é escrito usando a [[https://www.lua.org/ |sintaxe LUA]] e é dividido em duas partes&lt;br /&gt;
&lt;br /&gt;
* Configuração&lt;br /&gt;
* Texto&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
===Conky configuration===&lt;br /&gt;
The first/upper part contains all the configuration settings for the entire conky. Things like the position of the conky on your screen, transparency settings, border settings, the default font and it's size, and how often your conky gets updated. The whole configuration belong between brackets like this&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
Some rules apply&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* Every line end with &amp;lt;code&amp;gt;,&amp;lt;/code&amp;gt;&lt;br /&gt;
* Non-boolean/numerical value should be placed between &amp;lt;code&amp;gt;'&amp;lt;/code&amp;gt;&lt;br /&gt;
* Comment start with &amp;lt;code&amp;gt;--&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
===Examples===&lt;br /&gt;
'''1.''' This will set the default font color of your conky to white. Additionally, a &amp;lt;code&amp;gt;color1&amp;lt;/code&amp;gt; gets set using a [http://html-color-codes.info/ Html Color Code]to a light blue:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    default_color = 'white',    -- White default color&lt;br /&gt;
    color1 = '0ab1ff',          -- Light blue&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''2.''' This enables Xft, set the default font (LiberationMono), make it bold and set it's size (8):&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    use_xft = true,&lt;br /&gt;
    font = 'LiberationMono:bold:size=8',&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''3.''' In order to position your conky on your screen, modify these settings:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    alignment = 'top_right',     -- Conky gets placed in the top right corner of your desktop&lt;br /&gt;
    gap_x 18,                    -- with a horizontal gap of 18 pixels (to your right screen edge)&lt;br /&gt;
    gap_y 20,                    -- and a vertical gap of 20 pixels (to your top screen edge).&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''4.''' In some case you can have multiple values for one setting, they will be separated by a coma:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.config = {&lt;br /&gt;
...&lt;br /&gt;
    own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager,below',&lt;br /&gt;
...&lt;br /&gt;
};&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
Use the command: &amp;lt;code&amp;gt;man conky&amp;lt;/code&amp;gt;, and look into the '''CONFIGURATION SETTINGS''' section to see every settings available.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
===Conky text===&lt;br /&gt;
The second part contains the displayed conky code. Every code line corresponds to one displayed line on your desktop. There are a lot of available for displaying and modifying all kinds of information. Use the command: &amp;lt;code&amp;gt;man conky&amp;lt;/code&amp;gt;, and look into the '''OBJECTS/VARIABLES''' section to see every objects/variables available.&lt;br /&gt;
{{BoxInfo|Info|The lines in the '''conky.text''' section is printed exactly as is. E.g. if you create an empty line between sections - conky will display an empty line.}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
The whole code belong between these two double bracket:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
===Examples===&lt;br /&gt;
'''1.''' You can choose the color of your font using one of the following variables:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
${color}&lt;br /&gt;
${color1}&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Every variable is marked with a &amp;lt;code&amp;gt;$&amp;lt;/code&amp;gt; sign and by &amp;lt;code&amp;gt;{ }&amp;lt;/code&amp;gt; brackets (only needed, if the variable contains more than one word).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
'''2.''' You can call the default font (and it's size) with this command:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
$font&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
If you want a different font (DejaVuSerif) and font size (9) in your conky, use this command in your &amp;lt;code&amp;gt;.conf&amp;lt;/code&amp;gt; code:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
...&lt;br /&gt;
${font DejaVuSerif:size=9}&lt;br /&gt;
...&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''3.''' This code line displays the text &amp;quot;Kernel: &amp;quot; and the kernel you are using (using &amp;lt;code&amp;gt;$alignr&amp;lt;/code&amp;gt; just yields a nicer formatting, it is not necessary: &amp;lt;code&amp;gt;$alignr&amp;lt;/code&amp;gt; aligns all following text on the right of your conky):&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Kernel: ${alignr}${kernel}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''4.''' This variable gives you the latest 3 manjaro blog entry titles (using rss). It checks for updates every 60 minutes.&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
${rss http://manjaro.org/feed/ 60 item_titles 3}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''5.''' Information about the root partition &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; of your manjaro installation is displayed using&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Root: ${alignr}${fs_used /} of ${fs_size /}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
'''6.''' Instead of example 3, you can use the following code to display the exact same information:&lt;br /&gt;
{{File|file=~/.config/conky/conky.conf|&lt;br /&gt;
content=&amp;lt;pre&amp;gt;conky.text = [[&lt;br /&gt;
Kernel: ${alignr}${execi 3600 uname -r}&lt;br /&gt;
]];&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
===execi===&lt;br /&gt;
The variable &amp;lt;code&amp;gt;${execi 3600 XXXX}&amp;lt;/code&amp;gt; runs the &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; bash code in your terminal every 3600 seconds and displays the result in your conky. The result of the &amp;lt;code&amp;gt;uname -r&amp;lt;/code&amp;gt; bash command is your currently used kernel name.&lt;br /&gt;
&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Use any bash command instead of &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; you can think of. The bash commands can be as long and complicated as you want.&lt;br /&gt;
&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
{{BoxInfo|Warning|Using complicated bash commands (e.g. which call other programs or use large files) with low intervals (e.g. &amp;lt;code&amp;gt;${execi 2 XXXX}&amp;lt;/code&amp;gt; runs the &amp;lt;code&amp;gt;XXXX&amp;lt;/code&amp;gt; code once every 2 seconds and displays it's result in your conky) can use a lot of hardware resources and/or make your computer unresponsive.}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
===Running conky===&lt;br /&gt;
If you want to display a conky on your desktop a {{ic|~/.config/conky/conky.conf}} file with code in it is required. Next, open a terminal and run conky pointing to the file&lt;br /&gt;
{{UserCmd|command=conky -c ~/.config/conky/conky.conf}}&lt;br /&gt;
or to run as background daemon&lt;br /&gt;
{{UserCmd|command=conky -d -c ~/.config/conky/conky.conf}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
If you want to run conky automatically after each boot of your computer, you need to find out how to autostart a program. This depends on the Desktop Manager you are using. The next is examples of how to run conky from your system autostart folder/file/script/command.&lt;br /&gt;
&amp;lt;code&amp;gt;sleep 20&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;-p 20&amp;lt;/code&amp;gt; delay the start of conky by 20 seconds after your Desktop Environment has started. Adjust this value to your liking.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
{{UserCmd|command=conky -c ~/.config/conky/conky.conf &amp;amp;}}&lt;br /&gt;
{{UserCmd|command=sleep 20 &amp;amp;&amp;amp; conky -c ~/.config/conky/conky.conf &amp;amp;}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
When you change the running conky configuration file - conky will reload. But if you changed one of your dependency scripts (e.g. because you changed a variable and want to see the consequences) you will have to reload conky&lt;br /&gt;
{{UserCmd|command=killall conky &amp;amp;&amp;amp; conky -c ~/.config/config/conky.conf}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
===Troubleshooting &amp;amp; Tips===&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
====Missing rings====&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
To be able to use LUA scripts to execute drawing functions like clock rings - you will a conky package compiled with LUA support. Either build the package the package {{ic|conky-lua}} from [[Arch_User_Repository|AUR]] or install the {{ic|conky-lua-nv}} from the official repo.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
====Missing network information====&lt;br /&gt;
If network information is missing like download speed or network name (SSID), you need to replace the network interfaces in the configuration file with your network interface name. To get the names of your interfaces - open a terminal and execute&lt;br /&gt;
{{UserCmd|command=ip a | grep ' state UP' | cut -d' ' -f2 | cut -d':' -f1}}&lt;br /&gt;
Use the output from the command. Interface names starting with &amp;lt;code&amp;gt;en&amp;lt;/code&amp;gt; is ethernet interface and names starting with &amp;lt;code&amp;gt;wl&amp;lt;/code&amp;gt; is wireless interfaces. Replace all network interfaces names with (e.g. &amp;lt;code&amp;gt;wlan0&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;eth0&amp;lt;/code&amp;gt;) in your &amp;lt;code&amp;gt;.conf&amp;lt;/code&amp;gt; text section with the interface name(s) you retrieved from the above command.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
===Conky Manager===&lt;br /&gt;
An application named Conky manager exist but has not been updated for years and the configurations found in the package may work or they may not. You may install it - it can be a used as an inspiration but you should not rely on it. If you still think you it is a must have - you can build the package {{ic|conky-manager}} using [[Arch_User_Repository|AUR]]&lt;br /&gt;
{{UserCmd|command=pamac build conky-manager}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
==See Also==&lt;br /&gt;
* The [https://github.com/brndnmtthws/conky/wiki Conky website]&lt;br /&gt;
* The [https://wiki.archlinux.org/index.php/conky Arch Wiki] page for Conky&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
[[Category:Contents Page{{#translation:}}]]&lt;br /&gt;
[[Category:Applications{{#translation:}}]]&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/55/pt-br&amp;diff=49842</id>
		<title>Translations:Basic Tips for conky/55/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/55/pt-br&amp;diff=49842"/>
		<updated>2023-12-24T16:17:03Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;Para poder usar scripts LUA para executar funções de desenho como anéis de relógio - você precisará de um pacote conky compilado com suporte LUA. Você pode construir o...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Para poder usar scripts LUA para executar funções de desenho como anéis de relógio - você precisará de um pacote conky compilado com suporte LUA. Você pode construir o pacote {{ic|conky-lua}} do [[Arch_User_Repository|AUR]] ou instalar o {{ic|conky-lua-nv}} do repositório oficial.&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/54/pt-br&amp;diff=49841</id>
		<title>Translations:Basic Tips for conky/54/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/54/pt-br&amp;diff=49841"/>
		<updated>2023-12-24T16:18:40Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;====Anéis ausentes====&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====Anéis ausentes====&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/53/pt-br&amp;diff=49840</id>
		<title>Translations:Basic Tips for conky/53/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/53/pt-br&amp;diff=49840"/>
		<updated>2023-12-24T16:19:04Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;===Solução de Problemas e Dicas===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Solução de Problemas e Dicas===&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/52/pt-br&amp;diff=49839</id>
		<title>Translations:Basic Tips for conky/52/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/52/pt-br&amp;diff=49839"/>
		<updated>2023-12-24T16:15:57Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;Quando você altera o arquivo de configuração em execução do Conky, o Conky será recarregado. No entanto, se você alterou um dos scripts de dependência (por exemplo, po...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quando você altera o arquivo de configuração em execução do Conky, o Conky será recarregado. No entanto, se você alterou um dos scripts de dependência (por exemplo, porque alterou uma variável e quer ver as consequências), você terá que recarregar o Conky.&lt;br /&gt;
{{UserCmd|command=killall conky &amp;amp;&amp;amp; conky -c ~/.config/config/conky.conf}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/51/pt-br&amp;diff=49838</id>
		<title>Translations:Basic Tips for conky/51/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/51/pt-br&amp;diff=49838"/>
		<updated>2023-12-24T16:15:54Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;{{UserCmd|command=conky -c ~/.config/conky/conky.conf &amp;amp;}} {{UserCmd|command=sleep 20 &amp;amp;&amp;amp; conky -c ~/.config/conky/conky.conf &amp;amp;}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserCmd|command=conky -c ~/.config/conky/conky.conf &amp;amp;}}&lt;br /&gt;
{{UserCmd|command=sleep 20 &amp;amp;&amp;amp; conky -c ~/.config/conky/conky.conf &amp;amp;}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/50/pt-br&amp;diff=49837</id>
		<title>Translations:Basic Tips for conky/50/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/50/pt-br&amp;diff=49837"/>
		<updated>2023-12-24T16:15:16Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;Se você deseja executar o Conky automaticamente após cada inicialização do seu computador, você precisa descobrir como iniciar automaticamente um programa. Isso depende d...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Se você deseja executar o Conky automaticamente após cada inicialização do seu computador, você precisa descobrir como iniciar automaticamente um programa. Isso depende do Gerenciador de Desktop que você está usando. Abaixo estão exemplos de como executar o Conky a partir da pasta/arquivo/script/comando de inicialização automática do sistema.&lt;br /&gt;
&amp;lt;code&amp;gt;sleep 20&amp;lt;/code&amp;gt; e &amp;lt;code&amp;gt;-p 20&amp;lt;/code&amp;gt; atrasam o início do Conky em 20 segundos após o início do seu Ambiente de Desktop. Ajuste esse valor conforme sua preferência.&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/49/pt-br&amp;diff=49836</id>
		<title>Translations:Basic Tips for conky/49/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/49/pt-br&amp;diff=49836"/>
		<updated>2023-12-24T16:14:48Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;===Running conky=== Se você deseja exibir um Conky na sua área de trabalho, é necessário um arquivo {{ic|~/.config/conky/conky.conf}} com código. Em seguida, abra um term...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Running conky===&lt;br /&gt;
Se você deseja exibir um Conky na sua área de trabalho, é necessário um arquivo {{ic|~/.config/conky/conky.conf}} com código. Em seguida, abra um terminal e execute o Conky apontando para o arquivo&lt;br /&gt;
{{UserCmd|command=conky -c ~/.config/conky/conky.conf}}&lt;br /&gt;
ou para executar como um daemon em segundo plano&lt;br /&gt;
{{UserCmd|command=conky -d -c ~/.config/conky/conky.conf}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/39/pt-br&amp;diff=49835</id>
		<title>Translations:Basic Tips for conky/39/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/39/pt-br&amp;diff=49835"/>
		<updated>2023-12-24T16:09:09Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;* Configuração * Texto&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Configuração&lt;br /&gt;
* Texto&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/38/pt-br&amp;diff=49834</id>
		<title>Translations:Basic Tips for conky/38/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/38/pt-br&amp;diff=49834"/>
		<updated>2023-12-24T16:09:07Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;===Configuração=== Todos os nomes de arquivos que começam com um ponto &amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt; são arquivos ocultos. Se você deseja ver arquivos ocultos no seu gerenciador de arqu...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Configuração===&lt;br /&gt;
Todos os nomes de arquivos que começam com um ponto &amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt; são arquivos ocultos. Se você deseja ver arquivos ocultos no seu gerenciador de arquivos, precisa torná-los visíveis. Na maioria dos gerenciadores de arquivos, isso estará disponível nas opções.&lt;br /&gt;
====Arquivo de Configuração====&lt;br /&gt;
O arquivo de configuração padrão está localizado em {{ic|/usr/share/doc/conky-1.11.5_pre/conky.conf}}, onde as versões estão sujeitas a alterações. &lt;br /&gt;
O Conky não cria uma pasta local do Conky, então você terá que criar antecipadamente&lt;br /&gt;
{{UserCmd|command=mkdir -p ~/.config/conky}}&lt;br /&gt;
Em seguida, copie o padrão para o diretório pessoal&lt;br /&gt;
{{UserCmd|command=cp /usr/share/doc/conky-1.11.5_pre/conky.conf ~/.config/conky/conky.conf}}&lt;br /&gt;
O arquivo de configuração é um arquivo de texto simples e o conteúdo é escrito usando a [[https://www.lua.org/ |sintaxe LUA]] e é dividido em duas partes&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/37/pt-br&amp;diff=49833</id>
		<title>Translations:Basic Tips for conky/37/pt-br</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Translations:Basic_Tips_for_conky/37/pt-br&amp;diff=49833"/>
		<updated>2023-12-24T16:08:36Z</updated>

		<summary type="html">&lt;p&gt;CassioGangrel: Created page with &amp;quot;==Instalação== O Conky pode ser instalado usando o gerenciador de pacotes {{UserCmd|command=pamac install conky}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Instalação==&lt;br /&gt;
O Conky pode ser instalado usando o gerenciador de pacotes&lt;br /&gt;
{{UserCmd|command=pamac install conky}}&lt;/div&gt;</summary>
		<author><name>CassioGangrel</name></author>
	</entry>
</feed>