Skip to content

Commit fc84b73

Browse files
committed
fix for Xpra 5
1 parent 17753cf commit fc84b73

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jupyter_xprahtml5_proxy/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,17 @@ def setup_xprahtml5():
6868
'--html=on',
6969
'--bind={unix_socket},auth=none', # using sockets + jupyter-server-proxy => auth is not needed here
7070
'--socket-dir=' + socket_path,
71-
'--start=xterm -fa "DejaVu Sans Mono" -fs 14',
71+
'--start=xterm -xrm "XTerm*selectToClipboard: true" -fa "DejaVu Sans Mono" -fs 14',
7272
'--clipboard-direction=both',
7373
'--no-keyboard-sync', # prevent keys from repeating unexpectedly on high latency
7474
'--no-mdns', # do not advertise the xpra session on the local network
7575
'--no-bell',
76+
'--no-audio',
7677
'--no-speaker',
7778
'--no-printing',
7879
'--no-microphone',
7980
'--no-notifications',
80-
'--no-dbus',
81+
'--dbus-launch=""', # '--no-dbus' req. Xpra >= 6
8182
'--no-systemd-run', # do not delegated start-cmd to the system wide proxy server instance
8283
'--sharing', # this allows to open the desktop in multiple browsers at the same time
8384
'--no-daemon', # mandatory

0 commit comments

Comments
 (0)