1BROADWAYD(1) User Commands BROADWAYD(1)
2
3
4
6 broadwayd - Broadway display server
7
9 broadwayd [--port PORT] [--address ADDRESS] [--unixsocket ADDRESS]
10 [:DISPLAY]
11
13 broadwayd is a display server for the Broadway GDK backend. It allows
14 multiple GTK+ applications to display their windows in the same web
15 browser, by connecting to broadwayd.
16
17 When using broadwayd, specify the display number to use, prefixed with
18 a colon, similar to X. The default display number is 0.
19
20 broadwayd :5
21
22 Then point your web browser at http://127.0.0.1:8085. Start your
23 applications like this:
24
25 GDK_BACKEND=broadway BROADWAY_DISPLAY=:5 gtk3-demo
26
27 You can add password protection for your session by creating a file in
28 $XDG_CONFIG_HOME/broadway.passwd or $HOME/.config/broadway.passwd with
29 a crypt(3) style password hash. A simple way to generate it is with
30 openssl:
31
32 openssl passwd -1 > ~/.config/broadway.passwd
33
34
36 --port
37 Use PORT as the HTTP port, instead of the default 8080 + (DISPLAY -
38 1).
39
40 --address
41 Use ADDRESS as the HTTP address, instead of the default
42 http://127.0.0.1:PORT.
43
44 --unixsocket
45 Use ADDRESS as the unix domain socket address. This option
46 overrides --address and --port. It is available only on Unix-like
47 systems.
48
49
50
51GTK+ BROADWAYD(1)