Advertisement
Guest User

bumblebee.conf

a guest
Mar 25th, 2013
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. ~$ more /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=nvidia
  24.  
  25. ## Client options. Will take effect on the next optirun executed.
  26. [optirun]
  27. # Acceleration/ rendering bridge, possible values are auto, virtualgl and
  28. # primus.
  29. Bridge=auto
  30. # The method used for VirtualGL to transport frames between X servers.
  31. # Possible values are proxy, jpeg, rgb, xv and yuv.
  32. VGLTransport=proxy
  33. # Should the program run under optirun even if Bumblebee server or nvidia card
  34. # is not available?
  35. AllowFallbackToIGC=false
  36.  
  37.  
  38. # Driver-specific settings are grouped under [driver-NAME]. The sections are
  39. # parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
  40. # detection resolves to NAME).
  41. # PMMethod: method to use for saving power by disabling the nvidia card, valid
  42. # values are: auto - automatically detect which PM method to use
  43. # bbswitch - new in BB 3, recommended if available
  44. # switcheroo - vga_switcheroo method, use at your own risk
  45. # none - disable PM completely
  46. # https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
  47.  
  48. ## Section with nvidia driver specific options, only parsed if Driver=nvidia
  49. [driver-nvidia]
  50. # Module name to load, defaults to Driver if empty or unset
  51. KernelDriver=nvidia-304
  52. PMMethod=auto
  53. # colon-separated path to the nvidia libraries
  54. LibraryPath=/usr/lib/nvidia-304:/usr/lib32/nvidia-304
  55. # comma-separated path of the directory containing nvidia_drv.so and the
  56. # default Xorg modules path
  57. XorgModulePath=/usr/lib/nvidia-304/xorg,/usr/lib/xorg/modules
  58. XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
  59.  
  60. ## Section with nouveau driver specific options, only parsed if Driver=nouveau
  61. [driver-nouveau]
  62. KernelDriver=nouveau
  63. PMMethod=auto
  64. XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement