deskfig.sh 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. clear
  2. ##########
  3. #idk, should i alias all the basic installer commands to unify across all base-distros, like a rosetta stone?
  4. function deskfigselector {
  5. echo "deskfigselector is temporarily out of order while fixing main install"
  6. echo
  7. echo "welcome to the witchcraft\'s deskfig selector. here you can install what really gives your os character, it\'s desktop environment omponents and configuration."
  8. #decomment when bringing deskfigselection back into comission. ~ may also wanna change from stupid "select" style question, to a regular read, like tried n tested above.
  9. $WITCH/color.sh GREEN "
  10. 1) rowan ~~~ minimal fully-functional desktop
  11. 2) willow ~~~ like rowan, but a bit more flexibility when balancing minimalism to comfort ~vaporware
  12. 3) jamella ~~~ a tiling window manager showcase distro ~vaporware
  13. 4) zelda ~~~ idkwtf, it is all still just vapourware this far down the list
  14. 5) add your own configuration script here
  15. enter number preference of preference:"
  16. read SPINTOP
  17. case $SPINTOP in
  18. 1)
  19. echo "Choice was $SPINTOP, sorry, this part of the script is incomplete"
  20. echo "this is where you get taken to the rowan bit"
  21. $WITCH/deskfig.d/installrowan.sh
  22. ;;
  23. 2)
  24. echo "Choice was $SPINTOP, sorry, this part of the script is incomplete"
  25. echo "this is where you get taken to the willow bit"
  26. $WITCH/deskfig.d/installwillow.sh
  27. ;;
  28. 3)
  29. echo "Choice was $SPINTOP, sorry, this part of the script is incomplete"
  30. echo "this is where you get taken to the jamella bit"
  31. $WITCH/deskfig.d/installjamella.sh
  32. ;;
  33. 4)
  34. echo "Choice was $SPINTOP, sorry, this part of the script is incomplete"
  35. echo "this would be where you get taken to the zelda bit"
  36. $WITCH/deskfig.d/installzelda.sh
  37. ;;
  38. 5)
  39. echo "Choice was $SPINTOP, sorry, this part of the script is incomplete"
  40. echo "this would be where you get taken to the Gentoo/Hurd bit"
  41. $WITCH/deskfig.d/getdeskfig.sh
  42. ;;
  43. *)
  44. echo "Non-valid choice. try again"
  45. deskfigselector
  46. exit 1
  47. ;;
  48. esac
  49. }
  50. deskfigselector #From the start