Guest User

antiX Welcome screen pre-Alpha

a guest
Jun 4th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1. #! /bin/sh
  2.  
  3. KEY=54321
  4.  
  5. # Welcome tab
  6. yad --plug=$KEY --tabnum=1 --center --borders=20 --form --scroll\
  7. --field="<b>antiX</b> is a fast, lightweight and easy to install systemd-free \
  8. linux live CD distribution based on Debian Stable for Intel-AMD x86 \
  9. compatible systems. antiX offers users the “antiX Magic” in an \
  10. environment suitable for old and new computers. So don’t throw away \
  11. that old computer yet! \n":LBL '' \
  12. --field="<b>antiX 19.2</b> is based on Debian Buster and is built \
  13. to be mean and lean. It usually comes by default with a <b>4.9 kernel</b>, \
  14. as it will work better with older computers, but the user can update \
  15. to a 4.19 or 5.x kernel if needed. \n":LBL '' \
  16. --field="To configure most things in your system, launch the \
  17. antiX Control Centre":LBL '' \
  18. --field="To easily search for installed apps, use App Select":LBL '' \
  19. --field="Control Centre":BTN "antixcc.sh" \
  20. --field="App Select":BTN "app-select" &
  21.  
  22.  
  23. # Pre-installation tab
  24. yad --plug=$KEY --tabnum=2 --center --borders=20 --form --scroll\
  25. --field="For the Live system, the default passwords on live media are:":LBL '' \
  26. --field="<b> User: demo</b>, password: demo":LBL '' \
  27. --field="<b> Admin: root</b>, password: root \n":LBL '' \
  28. --field="All updates and new software added pre-installation \
  29. will be included when you are ready to install antiX to your system. \n":LBL '' \
  30. --field="You will be able to choose to keep your /home partition if \
  31. that option is selected in the advanced installation.\n":LBL '' \
  32. --field="Make sure you select the correct language (locale) and \
  33. Grub location during the installation.":LBL '' \
  34. --field="Install antiX":BTN "su-to-root -X -c minstall" &
  35.  
  36. # Live Tools tab
  37. yad --plug=$KEY --tabnum=3 ---center --borders=20 --form --scroll\
  38. --field="Live stuff. WORK IN PROGRESS":LBL '' &
  39.  
  40. #Apps and Update tab
  41. yad --plug=$KEY --tabnum=4 ---center --borders=20 --form --scroll\
  42. --field="How to install apps and methods to keep your system \
  43. updated. Also about Repo Manager. WORK IN PROGRESS":LBL '' &
  44.  
  45. #Desktops tab
  46. yad --plug=$KEY --tabnum=5 ---center --borders=20 --form --scroll\
  47. --field="Explaining the four different Window Managers, desktop \
  48. icon managers, File Managers and how to change between them easily. \
  49. WORK IN PROGRESS":LBL '' &
  50.  
  51. #Defaults tab
  52. yad --plug=$KEY --tabnum=6 ---center --borders=20 --form --scroll\
  53. --field="Explaining how to set Prefered Applications with the app, \
  54. launch the app, and how to add new entries to the startup file. \
  55. WORK IN PROGRESS":LBL '' &
  56.  
  57. #External Drives tab
  58. yad --plug=$KEY --tabnum=7 ---center --borders=20 --form --scroll\
  59. --field="Explain about Automounting, manual mounting, Android/iOS \
  60. mounting. WORK IN PROGRESS":LBL '' &
  61.  
  62. #Network tab
  63. yad --plug=$KEY --tabnum=8 ---center --borders=20 --form --scroll\
  64. --field="Explain about Connman, unlocking wifi, and Ceni. Use \
  65. expanders for displaying different troubleshooting options. Launchers \
  66. for Connman, and for a small unnstall connman script. WORK IN PROGRESS\
  67. ":LBL '' &
  68.  
  69. #Help tab
  70. yad --plug=$KEY --tabnum=9 ---center --borders=20 --form --scroll\
  71. --field="Link to forum, website, bugreports, launch help, Thank \
  72. you and link to donations. WORK IN PROGRESS":LBL '' &
  73.  
  74. # run main dialog
  75. yad --notebook --tab-pos="left" --key=$KEY --tab="Welcome" --tab="Pre-installation" \
  76. --tab="Live Tools" --tab="Apps and Update" --tab="Desktops" --tab="Defaults" \
  77. --tab="External Drives" --tab="Network" --tab="Help" \
  78. --window-icon=gnome-control-center --title="antiX Welcome screen" --height=500 \
  79. --image="/usr/local/lib/antiX/antiX-logo.png" \
  80. --width=700 --image-on-top \
  81. --text="<b><big>Welcome to antiX 19.2 Hannie Schaft</big></b>" \
  82. --button='Exit':1
Add Comment
Please, Sign In to add comment