Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 11th, 2012  |  syntax: None  |  size: 2.65 KB  |  hits: 26  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #
  2. # /etc/conf.d/splash
  3. #
  4.  
  5. ####  WARNING!
  6. ## This file is also sourced in the initcpio hook.
  7. ## No BASH-code (like arrays) is allowed here!
  8.  
  9. ####  initcpio and Fbsplash daemon  ##########################################
  10.  
  11. ## Themes to include into initcpio
  12. ## For a smaller initcpio you may try theme cfg files instead of directories.
  13. SPLASH_THEMES="
  14.         arch-banner-icons/1366x768.cfg
  15.        
  16. "
  17.  
  18. ## Override the initial silent splash screen status message defaults.
  19. ## Note: '$progress' will be replaced by Fbsplash itself.
  20. ## * initcpio - (no effect with fbcondecor kernel)
  21. SPLASH_INIT_MESSAGE="Initializing the kernel"
  22. ## * bootup
  23. SPLASH_BOOT_MESSAGE="Booting '$HOSTNAME' (\$progress%)"
  24. ## * reboot
  25. SPLASH_REBOOT_MESSAGE="Rebooting '$HOSTNAME' (\$progress%)"
  26. ## * shutdown
  27. SPLASH_SHUTDOWN_MESSAGE="Shutting down '$HOSTNAME' (\$progress%)"
  28.  
  29. ## Include and use the Fbsplash daemon (1.5 MiB) in the initcpio
  30. ## instead of the small helper only.
  31. ## Usefull to show animations early.
  32. ## Note: Themes with 'scripts/rc_init-pre' like 'arch-banner-icons' are
  33. ##       supported now if fbsplash-extras>=2.0.10 is installed, but there
  34. ##       might still be some sophisticated ones which break when using this.
  35. SPLASH_DAEMON="early"
  36.  
  37. ## Make the splash daemon use fade effects.
  38. ## Note: The initcpio helper does only use the kernel parameter!
  39. # Just use fadein on bootup and fadeout on shutdown/reboot
  40. case $PREVLEVEL in  N   ) SPLASH_EFFECTS="fadein" ; esac
  41. case  $RUNLEVEL in [06] ) SPLASH_EFFECTS="fadeout"; esac
  42. # Uncomment this line to allways use both
  43. # SPLASH_EFFECTS="fadein,fadeout"
  44.  
  45. ## Enable the textbox when starting the Fbsplash daemon.
  46. ## Useful if the theme provides a message log or other textbox.
  47. ## The scripts write any initscripts [FAIL] messages to the log.
  48. ## Note: The textbox can also be toggled by pressing F3-key.
  49. SPLASH_TEXTBOX="yes"
  50.  
  51. ## Splash progress timeout
  52. ## If set to a positive value, Fbsplash will automatically switch to verbose
  53. ## mode if there is no progress for the specified number of seconds.
  54. SPLASH_AUTOVERBOSE=0
  55.  
  56. ####  scripts behaviour  #####################################################
  57.  
  58. ## Change to verbose mode on any initscripts [FAIL] message
  59. ## Useful with very simple themes and also when starting Xorg from DAEMONS
  60. SPLASH_VERBOSE_ON_ERRORS="no"
  61.  
  62. ## Name of the DAEMONS script starting Xorg if any
  63. ## Set this to avoid virtual terminal change struggle between X and Fbsplash.
  64. SPLASH_XSERVICE="gdm"
  65. #SPLASH_XSERVICE="kdm"
  66. #SPLASH_XSERVICE="xdm"
  67. #SPLASH_XSERVICE="lxdm"
  68. #SPLASH_XSERVICE="slim"
  69.  
  70. ## Push initscripts [BUSY] messages to the splash status message line.
  71. SPLASH_PUSH_MESSAGES="no"
  72.  
  73. # EOF #