[
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020 Termux Professor\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# WinTermux\nScript For Install Windows In Android By Termux. Without Root.\n---\n## • First Download WIN10TP.iso File\n* Go to http://bit.ly/wintermux.\n* Download WIN10TP.iso file from link given above. File size is about 480mb. \n* Put this file in download folder. don't change name of iso file.\n* Then open temux and give following commands.\n\n## • How To Install In Termux\n`$ termux-setup-storage`\n\n`$ pkg up -y`\n\n`$ pkg install git`\n\n`$ git clone https://github.com/termuxprofessor/wintermux`\n\n`$ cd wintermux`\n\n`$ chmod +x wintermux.sh`\n\n`$ bash wintermux.sh`\n\nDownload and open VNC viewer app from playstore. Create new connection. Set server as 127.0.0.1:2. Then Connect.\n\nAnd You are Ready to Rock....\n---\n<p align=\"center\">\n  Follow Me On\n</p>\n<p align=\"center\">\n  <a href=\"https://www.youtube.com/c/TermuxProfessorYT\">\n    <img src=\"https://github.com/th3unkn0n/extra/blob/master/.img/yt.png\" width=\"40\" height=\"40\">\n  </a>\n  <a href=\"https://instagram.com/termuxprofessor\">\n    <img src=\"https://github.com/th3unkn0n/extra/blob/master/.img/ig.png\" width=\"40\" height=\"40\">\n</p>\n"
  },
  {
    "path": "wintermux.sh",
    "content": "#!/bin/bash\n#Do not copy or edit code read LICENSE First.\n#This Script is coded by Termux Professor (Youtuber)\n#banner \nclear\necho -e \"\\e[1;92m ╦ ╦┬┌┐┌ \\e[1;91m╔╦╗┌─┐┬─┐┌┬┐┬ ┬─┐ ┬\"\necho -e \"\\e[1;92m ║║║││││  \\e[1;91m║ ├┤ ├┬┘││││ │┌┴┬┘\"\necho -e \"\\e[1;92m ╚╩╝┴┘└┘  \\e[1;91m╩ └─┘┴└─┴ ┴└─┘┴ └─\"\necho -e \"\\e[1;92m [+] YouTube: \\e[1;91mTermuxProfessor\"\necho -e \"\\e[1;92m [+] Github: \\e[1;91mtermuxprofessor\\e[1;97m\"\necho \"\"\n\n#isocheaker\nread -p \"Does WIN10TP.iso File In Your Download Folder?(Yes/No) : \" input\nif [[ $input == Yes || $input == yes || $input == y || $input == Y ]]; then\n   clear\n   cd $HOME\n   termux-wake-lock\n   pkg install x11-repo -y\n   pkg install qemu-system-x86_64 -y\n   clear\n   echo -e \"\\e[1;92m1] Allow Storage Permission To Termux.\"\n   sleep 3\n   clear\n   read -p \"Select Size Of RAM In MB Ex 1GB = 1024 : \" ram\n   echo \"[+] Server Is Running....\"\n   echo -e \"Your Server IP is:\\e[1;91m 127.0.0.1:2\"\n   qemu-system-x86_64 -m $ram -cdrom storage/downloads/WIN10TP.iso -vnc 127.0.0.1:2\n\nelif [[ $input == No || $input == no || $input == n || $input == N ]]; then\necho -e \"\\e[1;91m1. First Download WIN10TP.iso file from this Link: \\e[1;92mhttp://bit.ly/wintermux\" #pastedownload link here\necho \"2. Put WIN10TP.iso file into download folder.\"\nexit 2\nelse\necho -e \"\\e[1;91mInvalid Option\"\nexit 1\nfi\n"
  }
]