Skip to content

Instantly share code, notes, and snippets.

@enyachoke
Forked from DennisLfromGA/crouton.init
Last active April 18, 2016 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enyachoke/885f57d36dc31e0fe1bc62faaaf55818 to your computer and use it in GitHub Desktop.
Save enyachoke/885f57d36dc31e0fe1bc62faaaf55818 to your computer and use it in GitHub Desktop.
An external control file for adjusting four parameters in 'crouton.conf' to invoke a crouton chroot.
##############################################################
## Place a '#' in the 1st column before the variable if you ##
#+ don't want to change it from the crouton.conf defaults. ##
##############################################################
###
##########################################################################
##* crouton.conf defaults are: ##
# DELAY=10 # delay desired number of seconds before starting ##
# CHROOT=precise # enter desired chroot to start ##
# START_DE=startxfce4 # enter desired Desktop Envirnoment to use ##
# CHROOT_APP=none # enter desired chroot application to run ##
# XMETHOD=default # enter the desired XMETHOD (xorg,xephyr,xiwi) ##
# RUN_STATE=y # change to 'n' to disable running $CHROOT ##
##########################################################################
###
### DELAY: change to desired number of seconds before starting
##* It helps sometimes to give other applicaitons time to initialize.
#--
DELAY=30
###
### CHROOT: change to desired chroot to use
#--
##* chroot(s) in '/var/crouton/chroots': precise, trusty, wheezy-cb, mdwatson
##! precise - DE:kde,xbmc
#CHROOT=precise
##! trusty - DE:gnome,kde,xfce,xbmc
CHROOT=trusty
##! wheezy-cb - DE:xinit,startob
#CHROOT=wheezy-cb
##! mdwatson - DE:elementary
#CHROOT=mdwatson
###
### START_DE: change to desired Desktop Envirnoment to use
#--
#START_DE=startelementary
#START_DE=startkde
START_DE=startlxde
#START_DE=startgnome
#START_DE=startunity
#START_DE=startxbmc
#START_DE=startxfce4
##! below 'enter-chroot' commonly used with
##! CHROOT_APP=sleep infinity (below) for headless operations.
START_DE=enter-chroot
###
### CHROOT_APP: enter a chroot application to run, used for startxiwi
##* or enter-chroot, etc.
#--
#CHROOT_APP=pidgin
#CHROOT_APP=skype
#CHROOT_APP=xterm
## below 'sleep infinity' commonly used with
## START_DE=enter-chroot (above) for headless operations, etc.
#CHROOT_APP=sleep infinity
###
### XMETHOD: Override the default XMETHOD for this session - if installed
#--
#XMETHOD=default
#XMETHOD=xorg
#XMETHOD=xephyr
XMETHOD=xiwi
###
### RUN_STATE: change to 'n' to disable running crouton.conf
#--
RUN_STATE=y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment