unixwz0r

.sthrc (the setup-tuxhat config file)

Jan 20th, 2015
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. #!/bin/bash
  2. #
  3. # This is the Tux Hat Linux 3.3 Setup-Tuxhat config file
  4. #
  5. # Example config file for setup-tuxhat(1).
  6. # Values set here is the default as in setup-tuxhat(1).
  7.  
  8. # List of programs, commands with whitespaces should be quoted or escaped.
  9. # If unset, all sessions in /etc/X11/Sessions or /usr/share/xsessions are
  10. # offered as choices.
  11. #
  12. # (An example:)
  13. # binlist=(
  14. # '~/.xsession' # Launch your X session,
  15. # '/bin/bash --login' # or just execute your shell,
  16. # '/usr/bin/fbterm' # or start a frame buffer console,
  17. # '/usr/bin/cdm ~/.submenu.cdmrc' # or go to a submenu :)
  18. # )
  19. binlist=(
  20. '/opt/setup/arch-setup'
  21. '/opt/setup/tuxhat-install'
  22. '/opt/setup/vbox-guest-setup'
  23. '/opt/setup/network-setup'
  24. '/opt/setup/video-setup'
  25. '/opt/setup/compton-setup'
  26. '/opt/setup/steam-setup'
  27. )
  28.  
  29. # List all program display names, one-by-one matched with $binlist.
  30. # Names with whitespaces should be quoted or escaped.
  31. #
  32. # (Continued example:)
  33. # namelist=('X session' Console FBTerm 'Sub menu')
  34. namelist=('Arch Setup' 'Tux Hat Linux Install' 'Virtualbox Guest Setup' 'Network Setup' 'Video Setup [user]' 'Compton Composite Setup [user]' 'Steam Setup')
  35.  
  36. # Type of the programs, one-by-one matched with $binlist.
  37. # `C' for *C*onsole programs, which would be `exec'ed.
  38. # `X' for *X* programs, which would be run with cdm-xlaunch(1).
  39. #
  40. # (Continued example:)
  41. # flaglist=(X C C C)
  42. flaglist=(C C C C C C C)
  43.  
  44. # Style for the cdm dialog, which is printed with dialog(1).
  45. # Default to unset, causing dialog(1) to use the system wide default.
  46. # See /usr/share/doc/cdm/themes for some nice choices.
  47. dialogrc=/opt/cdm/themes/tuxhat
  48.  
  49. # Set default display.
  50. display=0
  51.  
  52. # Where should the first X tty be spawned?
  53. # special value `keep' causes to run X in current tty.
  54. xtty=keep
Advertisement
Add Comment
Please, Sign In to add comment