Advertisement
Guest User

milomak bumblebee.conf

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