~droetker/ubuntu/saucy/bumblebee/fix-for-1250745

« back to all changes in this revision

Viewing changes to conf/bumblebee.conf.in

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2013-05-03 03:04:38 UTC
  • Revision ID: package-import@ubuntu.com-20130503030438-uvmvja55iicztpxf
Tags: upstream-3.2.1
ImportĀ upstreamĀ versionĀ 3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Configuration file for Bumblebee. Values should **not** be put between quotes
 
2
 
 
3
## Server options. Any change made in this section will need a server restart
 
4
# to take effect.
 
5
[bumblebeed]
 
6
# The secondary Xorg server DISPLAY number
 
7
VirtualDisplay=@CONF_XDISP@
 
8
# Should the unused Xorg server be kept running? Set this to true if waiting
 
9
# for X to be ready is too long and don't need power management at all.
 
10
KeepUnusedXServer=@CONF_KEEPONEXIT@
 
11
# The name of the Bumbleblee server group name (GID name)
 
12
ServerGroup=@CONF_GID@
 
13
# Card power state at exit. Set to false if the card shoud be ON when Bumblebee
 
14
# server exits.
 
15
TurnCardOffAtExit=@CONF_TURNOFFATEXIT@
 
16
# The default behavior of '-f' option on optirun. If set to "true", '-f' will
 
17
# be ignored.
 
18
NoEcoModeOverride=false
 
19
# The Driver used by Bumblebee server. If this value is not set (or empty),
 
20
# auto-detection is performed. The available drivers are nvidia and nouveau
 
21
# (See also the driver-specific sections below)
 
22
Driver=@CONF_DRIVER@
 
23
# Directory with a dummy config file to pass as a -configdir to secondary X
 
24
XorgConfDir=@XCONFDDIR@
 
25
 
 
26
## Client options. Will take effect on the next optirun executed.
 
27
[optirun]
 
28
# Acceleration/ rendering bridge, possible values are auto, virtualgl and
 
29
# primus.
 
30
Bridge=@CONF_BRIDGE@
 
31
# The method used for VirtualGL to transport frames between X servers.
 
32
# Possible values are proxy, jpeg, rgb, xv and yuv.
 
33
VGLTransport=@CONF_VGLCOMPRESS@
 
34
# List of paths which are searched for the primus libGL.so.1 when using
 
35
# the primus bridge
 
36
PrimusLibraryPath=@CONF_PRIMUS_LD_PATH@
 
37
# Should the program run under optirun even if Bumblebee server or nvidia card
 
38
# is not available?
 
39
AllowFallbackToIGC=@CONF_FALLBACKSTART@
 
40
 
 
41
 
 
42
# Driver-specific settings are grouped under [driver-NAME]. The sections are
 
43
# parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
 
44
# detection resolves to NAME).
 
45
# PMMethod: method to use for saving power by disabling the nvidia card, valid
 
46
# values are: auto - automatically detect which PM method to use
 
47
#         bbswitch - new in BB 3, recommended if available
 
48
#       switcheroo - vga_switcheroo method, use at your own risk
 
49
#             none - disable PM completely
 
50
# https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
 
51
 
 
52
## Section with nvidia driver specific options, only parsed if Driver=nvidia
 
53
[driver-nvidia]
 
54
# Module name to load, defaults to Driver if empty or unset
 
55
KernelDriver=@CONF_DRIVER_MODULE_NVIDIA@
 
56
PMMethod=@CONF_PM_METHOD@
 
57
# colon-separated path to the nvidia libraries
 
58
LibraryPath=@CONF_LDPATH_NVIDIA@
 
59
# comma-separated path of the directory containing nvidia_drv.so and the
 
60
# default Xorg modules path
 
61
XorgModulePath=@CONF_MODPATH_NVIDIA@
 
62
XorgConfFile=@BBCONFDIR@/xorg.conf.nvidia
 
63
 
 
64
## Section with nouveau driver specific options, only parsed if Driver=nouveau
 
65
[driver-nouveau]
 
66
KernelDriver=nouveau
 
67
PMMethod=@CONF_PM_METHOD@
 
68
XorgConfFile=@BBCONFDIR@/xorg.conf.nouveau
 
69