Manjaro Difference between revisions of "Translations:Basic Tips for conky/45/ru"

Difference between revisions of "Translations:Basic Tips for conky/45/ru"

From Manjaro
(Created page with "'''2.''' Вы можете вызвать шрифт по умолчанию (и его размер) с помощью этой команды: {{File|file=~/.config/conky/co...")
(No difference)

Revision as of 07:44, 12 January 2023

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. Вы можете вызвать шрифт по умолчанию (и его размер) с помощью этой команды:

~/.config/conky/conky.conkyrc
conky.text = [[
...
$font
...
]];

Если вам нужен другой шрифт (DejaVuSerif) и размер (9) в вашем conky - используйте эту команду в вашем коде .conkyrc:

~/.config/conky/conky.conkyrc
conky.text = [[
...
${font DejaVuSerif:size=9}
...
]];

3. В этой строке кода отображается текст "Kernel: " и используемое вами ядро (использование $alignr просто обеспечивает более приятное форматирование, в этом нет необходимости: $alignr выравнивает весь следующий текст справа от вашего conky):

~/.config/conky/conky.conkyrc
conky.text = [[
Kernel: ${alignr}${kernel}
]];

4. Эта переменная дает Вам последние 3 названия записей в блоге manjaro (с использованием rss). Он проверяет наличие обновлений каждые 60 минут.

~/.config/conky/conky.conkyrc
conky.text = [[
${rss http://manjaro.org/feed/ 60 item_titles 3}
]];

5. Информация о корневом разделе / вашей установки manjaro отображается с помощью

~/.config/conky/conky.conkyrc
conky.text = [[
Root: ${alignr}${fs_used /} of ${fs_size /}
]];

6. Вместо примера 3 вы можете использовать следующий код для отображения точно такой же информации:

~/.config/conky/conky.conkyrc
conky.text = [[
Kernel: ${alignr}${execi 3600 uname -r}
]];
Cookies help us deliver our services. By using our services, you agree to our use of cookies.