doc(manpages: awesome-client: ru): translation)

This commit is contained in:
actionless 2018-01-22 13:56:08 +01:00
parent 80b21cfbc3
commit ac3735ea32
1 changed files with 8 additions and 7 deletions

View File

@ -27,25 +27,26 @@ awesome через D-Bus. Если установлен «rlwrap», то он б
В awesome должен быть загружен модуль «awful.remote», чтобы позволить удалённое В awesome должен быть загружен модуль «awful.remote», чтобы позволить удалённое
выполнение кода. выполнение кода.
EXAMPLES ПРИМЕРЫ
------- -------
.... ....
$ awesome-client 'return 1+1, "Hello, world"\ $ awesome-client 'return 1+1, "Hello, world"\
double 2 double 2
string "Hello, world" string "Hello, world"
# The following does not return anything on the command line, # Следующий пример не возвращает ничего в командную строку,
# but will show a notification. # но показывает уведомление.
$ awesome-client ' $ awesome-client '
> naughty = require("naughty") > naughty = require("naughty")
> naughty.notify({ > naughty.notify({
> title="CLI Notification", > title="CLI Notification",
> text="This is a notification sent from the command line!"}) > text="Это уведомление было отправлено из командной строки!"})
> ' > '
# Entering read-eval-print-loop mode # Интерактивный режим (REPL)
# This mode will send every line to awesome, exactly the same as passing # В данном режиме каждая строка введенная пользователем
# multiple commands on the command line. # будет отправлена в awesome wm, точно так же, как если бы несколько команд
# были бы переданы как аргументы командной строки.
$ awesome-client $ awesome-client
awesome# return 1+1 awesome# return 1+1
double 2 double 2