Advertisement
Guest User

bumblebee.conf for amd video card

a guest
Dec 9th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 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. # for NVIDIA cards and fglrx and radeon for ATI/AMD cards (See also the
  22. # driver-specific sections below)
  23. Driver=fglrx
  24.  
  25. ## Client options. Will take effect on the next optirun executed.
  26. [optirun]
  27. # The method used for VirtualGL to transport frames between X servers.
  28. # Possible values are proxy, jpeg, rgb, xv and yuv.
  29. VGLTransport=proxy
  30. # Should the program be run even if the Bumblebee daemon or discrete video card
  31. # is not available?
  32. AllowFallbackToIGC=false
  33.  
  34.  
  35. # Driver-specific settings are grouped under [driver-NAME]. The sections are
  36. # parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
  37. # detection resolves to NAME).
  38. # PMMethod: method to use for saving power by disabling the discrete video
  39. # card, valid values are:
  40. # auto - automatically detect which PM method to use
  41. # bbswitch - for nvidia and nouveau, recommended if available
  42. # switcheroo - vga_switcheroo method, nouveau and radeon only
  43. # none - disable PM completely
  44. # https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
  45.  
  46. ## Section with nvidia driver specific options, only parsed if Driver=nvidia
  47. [driver-nvidia]
  48. # Module name to load, defaults to Driver if empty or unset
  49. KernelDriver=
  50. PMMethod=none
  51. # colon-separated path to the nvidia libraries
  52. LibraryPath=
  53. # comma-separated path of the directory containing nvidia_drv.so and the
  54. # default Xorg modules path
  55. XorgModulePath=
  56. XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
  57.  
  58. ## Section with nouveau driver specific options, only parsed if Driver=nouveau
  59. [driver-nouveau]
  60. KernelDriver=nouveau
  61. PMMethod=none
  62. XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
  63. [driver-fglrx]
  64. KernelDriver=fglrx
  65. PPMethod=none
  66. LibraryPath=/usr/X11R6/lib64/fglrx
  67. XorgModulePath=
  68. XorgConfFile=/etc/bumblebee/xorg.conf.fglrx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement