Advertisement
Guest User

Untitled

a guest
Mar 10th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.53 KB | None | 0 0
  1. #!/bin/bash
  2. #
  3. # Launcher script for LyX that seeds a preferences file that contains
  4. # the proper pipe path on first run.
  5. # (c) Stephen Ewen and UberStudent EdTech <ewens@uberstudent.com>
  6. # License: GFDL 1.3 or above http://www.gnu.org/licenses/fdl-1.3.en.html
  7.  
  8. if [ ! -f "$HOME/.lyx/preferences" ]; then
  9.      mkdir -p "$HOME/.lyx"
  10.      cat >"$HOME/.lyx/preferences" <<EOL
  11. # LyX 2.1.4 generated this file. If you want to make your own
  12. # modifications you should do them from inside LyX and save.
  13.  
  14. Format 15
  15.  
  16.  
  17. #
  18. # MISC SECTION ######################################
  19. #
  20.  
  21. \serverpipe "$HOME/.lyxpipe"
  22. \user_name "$USER"
  23. \user_email ""
  24.  
  25. #
  26. # SCREEN & FONTS SECTION ############################
  27. #
  28.  
  29. \screen_font_sizes 5 7 8 9 10 12 14.4 17.26 20.74 24.88
  30. \single_instance false
  31.  
  32. #
  33. # COLOR SECTION ###################################
  34. #
  35.  
  36.  
  37. #
  38. # PRINTER SECTION ###################################
  39. #
  40.  
  41.  
  42. #
  43. # TEX SECTION #######################################
  44. #
  45.  
  46.  
  47. #
  48. # FILE SECTION ######################################
  49. #
  50.  
  51.  
  52. #
  53. # PLAIN TEXT EXPORT SECTION ##############################
  54. #
  55.  
  56.  
  57. #
  58. # SPELLCHECKER SECTION ##############################
  59. #
  60.  
  61.  
  62. #
  63. # LANGUAGE SUPPORT SECTION ##########################
  64. #
  65.  
  66.  
  67. #
  68. # 2nd MISC SUPPORT SECTION ##########################
  69. #
  70.  
  71.  
  72. #
  73. # FORMATS SECTION ##########################
  74. #
  75.  
  76.  
  77. #
  78. # CONVERTERS SECTION ##########################
  79. #
  80.  
  81.  
  82. #
  83. # COPIERS SECTION ##########################
  84. #
  85. EOL
  86.      lyx /usr/share/lyx/examples/splash.lyx &
  87. else
  88.      lyx &
  89. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement