Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.29 KB | None | 0 0
  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=:8
  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=false
  11. # The name of the Bumbleblee server group name (GID name)
  12. ServerGroup=bumblebee
  13. # Card power state at exit. Set to false if the card shoud be ON when Bumblebee
  14. # server exits.
  15. TurnCardOffAtExit=false
  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=
  23. # Directory with a dummy config file to pass as a -configdir to secondary X
  24. XorgConfDir=/etc/bumblebee/xorg.conf.d
  25. # Xorg binary to run
  26. XorgBinary=/usr/lib/xorg/Xorg
  27.  
  28. ## Client options. Will take effect on the next optirun executed.
  29. [optirun]
  30. # Acceleration/ rendering bridge, possible values are auto, virtualgl and
  31. # primus.
  32. Bridge=auto
  33. # The method used for VirtualGL to transport frames between X servers.
  34. # Possible values are proxy, jpeg, rgb, xv and yuv.
  35. VGLTransport=proxy
  36. # List of paths which are searched for the primus libGL.so.1 when using
  37. # the primus bridge
  38. PrimusLibraryPath=/usr/lib/x86_64-linux-gnu/primus:/usr/lib/i386-linux-gnu/primus:/usr/lib/primus:/usr/lib32/primus
  39. # Should the program run under optirun even if Bumblebee server or nvidia card
  40. # is not available?
  41. AllowFallbackToIGC=false
  42.  
  43.  
  44. # Driver-specific settings are grouped under [driver-NAME]. The sections are
  45. # parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
  46. # detection resolves to NAME).
  47. # PMMethod: method to use for saving power by disabling the nvidia card, valid
  48. # values are: auto - automatically detect which PM method to use
  49. #         bbswitch - new in BB 3, recommended if available
  50. #       switcheroo - vga_switcheroo method, use at your own risk
  51. #             none - disable PM completely
  52. # https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
  53.  
  54. ## Section with nvidia driver specific options, only parsed if Driver=nvidia
  55. [driver-nvidia]
  56. # Module name to load, defaults to Driver if empty or unset
  57. KernelDriver=nvidia
  58. PMMethod=auto
  59. # colon-separated path to the nvidia libraries
  60. LibraryPath=/usr/lib/x86_64-linux-gnu:/usr/lib/i386-linux-gnu/nvidia:/usr/lib/nvidia
  61. # comma-separated path of the directory containing nvidia_drv.so and the
  62. # default Xorg modules path
  63. XorgModulePath=/usr/lib/nvidia/nvidia,/usr/lib/xorg/modules
  64. XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
  65. # If set to true, will always unload the kernel module(s) even with
  66. # PMMethod=none - useful for newer Optimus models on which the kernel power
  67. # management works out of the box to power the card on/off without bbswitch.
  68. AlwaysUnloadKernelDriver=false
  69.  
  70. ## Section with nouveau driver specific options, only parsed if Driver=nouveau
  71. [driver-nouveau]
  72. KernelDriver=nouveau
  73. PMMethod=auto
  74. XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement