/etc/xpra/xpra.conf is in xpra 0.12.3+dfsg-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | #
# This is the default configuration file for Xpra
#
# You can provide default values for most command line
# options here.
# All options can be overriden on the xpra command line.
# See the man page for details.
# Options which can be turned on or off will accept
# the following values: 1, 0, true, false, yes, no
# Commands to start by default (may be specified more than once):
#start-child = /usr/bin/xterm
#start-child = /usr/bin/xeyes
# Xsession
start-child = /etc/X11/Xsession true
# Enable clipboard forwarding:
clipboard = yes
# Enable forwarding of notifications:
notifications = yes
# Enable forwarding of system tray icons:
system-tray = yes
# Start a pulseaudio server with each session:
pulseaudio = yes
# pulseaudio server start command:
pulseaudio-command = pulseaudio --start --daemonize=false --system=false \
--exit-idle-time=-1 -n --load=module-suspend-on-idle \
--load=module-null-sink --load=module-native-protocol-unix \
--log-level=2 --log-target=stderr
# Forward sound output to clients:
speaker = no
# Codec(s) to use for forwarding speaker sound:
#speaker-codec = mp3
#speaker-codec = flac
#speaker-codec = wav
#speaker-codec = wavpack
#speaker-codec = speex
#speaker-codec = opus
# Forward sound input to server:
# microphone = yes
# Codec(s) to use for forwarding microphone sound:
#microphone-codec = mp3
#microphone-codec = flac
#microphone-codec = wav
#microphone-codec = wavpack
#microphone-codec = speex
#microphone-codec = opus
# Enable shared memory transfers:
mmap = yes
# Use server group ownership for mmap file:
mmap-group = no
# Share session with other users:
sharing = no
# Default compression (0 to 9):
compression_level = 1
# Socket directory:
#socket-dir = /tmp
#socket-dir = ~/.xpra
# Where to send non xpra clients:
#tcp-proxy = 127.0.0.1:80
# Log file:
log-file = $DISPLAY.log
# Publish sessions:
mdns = yes
# Debugging:
debug = no
# OpenGL accelerated rendering:
#opengl = yes
#opengl = no
opengl = auto
# Default encoding (not all encodings may be available in your environment):
#encoding = h264
#encoding = vp8
#encoding = vpx
#encoding = png
#encoding = jpeg
#encoding = rgb
#encoding = webp
# Video encoders loaded by the server (all of them unless specified)
# examples:
#video-encoders=x264,vpx,nvenc
#video-encoders=x264
# Colourspace conversion modules loaded by the server (all of them unless specified)
# examples:
#csc-modules=swscale,cython,opencl,nvcuda
#csc-modules=swscale
# Use fixed quality:
#quality = 80
quality = auto
# For auto quality, do not go below this value:
min-quality = 70
# Use fixed speed:
#speed = 20
speed = auto
# For auto speed, do not go below this value:
#min-speed = 20
min-speed = 0
# Idle delay in seconds before doing an automatic lossless refresh:
auto-refresh-delay = 0.25
# Default DPI:
dpi = 96
# Client window title:
title = @title@ on @client-machine@
# Icon used by the system tray:
#tray-icon = /path/to/icon.png
# Keyboard synchronization:
keyboard-sync = yes
# Send ping packets more regularly (every second):
pings = no
# Client ssh command:
#ssh = /usr/bin/ssh
# Virtual display command:
# - Old Xvfb option:
# xvfb=Xvfb +extension Composite -screen 0 3840x2560x24+32 -nolisten tcp -noreset -auth $XAUTHORITY
# - With Xorg 1.12 or newer and the dummy driver:
# xvfb=/usr/bin/Xorg -dpi 96 -noreset -nolisten tcp +extension GLX +extension RANDR +extension RENDER -logfile ${HOME}/.xpra/Xorg.${DISPLAY}.log -config /etc/xpra/xorg.conf
#
# Using Xorg:
xvfb=/usr/bin/Xorg -dpi 96 -noreset -nolisten tcp +extension GLX +extension RANDR +extension RENDER -logfile ${HOME}/.xpra/Xorg.${DISPLAY}.log -config /etc/xpra/xorg.conf
|