kyndder

refit.conf

Feb 23rd, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.96 KB | None | 0 0
  1. #
  2. # refit.conf
  3. # Configuration file for the rEFIt boot menu
  4. #
  5.  
  6. # Set desired screen resolution if enabled
  7. screen_resolution 1440x900
  8.  
  9. # Timeout in seconds for the main menu screen.
  10. # Commenting the timeout option or setting it to -1
  11. # disables automatic booting (i.e., no timeout).
  12. # Setting it to 0 enables direct boot to default volume.
  13. # timeout 5 - enter menu and wait for 5 sec to boot default Volume
  14. # timeout 0 - boot into default volume without GUI
  15. # timeout -1 - enter GUI without default booting
  16. #
  17. timeout 25
  18.  
  19. # Mouse pointer settings:
  20. # Set mousespeed to adjust mouse cursor sensitivity.
  21. # Common values are between 2-8.
  22. # To disable mouse, set mousespeed to 0.
  23. mousespeed 0
  24. #mousemirror
  25. dblclick 500
  26.  
  27. # Disable menu options for increased security. These are intended for a lab
  28. # environment where the administrator doesn't want users to mess with the
  29. # operating system. List the names for the options you want to hide from
  30. # the boot menu. Currently supported:
  31. #  shell       - remove the EFI shell
  32. #  tools       - remove all EFI tools (shell and gptsync)
  33. #  optical     - no booting from optical drives
  34. #  external    - no booting from external disks or USB flash drives
  35. #  internal    - no booting from internal disks; this setting is not
  36. #                 recommended because it locks you out of all operating
  37. #                 systems installed on the internal hard disks.
  38. #  singleuser  - remove the submenu options to boot Mac OS X in single-user
  39. #                 or verbose modes
  40. #  hwtest      - remove the submenu option to run Apple Hardware Test
  41. #  all         - all of the above, except for 'internal'
  42. #
  43. #disable external optical shell singleuser
  44.  
  45. # THEME SET
  46. #theme metal
  47. theme black_green
  48.  
  49. # Hide volumes. Moved here from config.plist
  50. # Available options:
  51. #  hidevolumes osx osxinstall recovery duplicate
  52. #       windowsefi opticaluefi internaluefi externaluefi legacy
  53. #       grub gentoo redhat ubuntu mint fedora suse
  54. # It is also possible to hide volumes by device path, GUID, or
  55. # any subtring found in device path
  56. # Look into your boot.log to find a string like that:
  57. #  hidevolumes HD(1,MBR,0x223EE178,0x1,0x6689F)
  58. # be sure the string is unique
  59. #hidevolumes fedora
  60.  
  61. # Disable display of text-mode output when in graphics mode. This
  62. # option is unnecessary on Macs, but without this option, UEFI-based
  63. # PCs tend to display text-mode messages relating to boot loader probing
  64. # over the GUI display.
  65. #
  66. quiet
  67.  
  68. # Enable the use of the log file (for debug purpose)
  69. # This will make boot process much slower, so it should be stay disabled in most cases.
  70. # Log will be outputted to /EFI/misc/
  71. # Make sure /EFI/misc/ directory exists when enabling this.
  72. #systemlog
  73.  
  74. # List legacy options first. When enabled, legacy BIOS based boot options
  75. # (e.g. Windows, Linux via LILO or GRUB) will be listed first. This is
  76. # intended as a quick fix to change the default boot choice until full
  77. # configurability arrives.
  78. #
  79. #legacyfirst
  80.  
  81. # EOF
Advertisement
Add Comment
Please, Sign In to add comment