Merge branch 'manpage-translation' of https://github.com/psychon/awesome

This commit is contained in:
Uli Schlachter 2018-02-10 20:09:13 +01:00
commit 2ec698894e
1 changed files with 12 additions and 11 deletions

View File

@ -14,8 +14,9 @@ awesome-client [-h|--help] [command [command...]]
BESCHREIBUNG
------------
awesome-client ist eine externe Befehlsschnittstelle für awesome.
Es kommuniziert über D-Bus mit awesome um die Möglichkeit zu bieten, Lua-Anweisungen von extern auszuführen.
awesome-client ist eine externe Befehlsschnittstelle für awesome, die die
Möglichkeit bietet, Lua-Anweisungen an awesome zu senden. Die Kommunikation mit
awesome erfolgt über D-Bus.
BENUTZUNG
---------
@ -24,25 +25,25 @@ Wenn 'rlwrap' installiert ist wird es benutzt, um eine readline-Kommandozeilenei
Das Modul 'awful.remote' muss geladen sein, um diesen Befehl zu benutzen.
EXAMPLES
-------
BEISPIELE
---------
....
$ awesome-client 'return 1+1, "Hello, world"\
double 2
string "Hello, world"
# The following does not return anything on the command line,
# but will show a notification.
# Das folgende Beispiel erzeugt keine Ausgabe auf der Kommandozeile,
# sondern zeigt eine Benachrichtigung an.
$ awesome-client '
> naughty = require("naughty")
> naughty.notify({
> title="CLI Notification",
> text="This is a notification sent from the command line!"})
> title="CLI-Benachrichtigung",
> text="Dies ist eine Benachrichtigung von der Kommandozeile!"})
> '
# Entering read-eval-print-loop mode
# This mode will send every line to awesome, exactly the same as passing
# multiple commands on the command line.
# Starte eine lesen-ausführen-ausgeben-Schleife (REPL).
# In diesem Modus wird jede Zeile zu awesome geschickt; auf die selbe Art
# wie mehrere Kommandos auf der Kommandozeile.
$ awesome-client
awesome# return 1+1
double 2