├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── image-1.png └── image-2.png ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── files ├── AntiTrackTime.bat ├── Disable Window Network Auto-Tuning.bat ├── Enable Window Network Auto-Tuning.bat ├── MAS.bat ├── OHDW.bat ├── choco.bat ├── ctt.bat ├── readme.md └── win10debloater.bat ├── hash.json ├── main.py ├── requirements.txt ├── site ├── get ├── index.html ├── package.json ├── styles.css ├── tsconfig.json ├── vite-env.d.ts └── vite.config.ts ├── tools.py └── xtools.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: xemulat 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Additional context** 32 | Add any other context about the problem here. 33 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxiereal/XToolbox/d1a6505745fa03fccc051f573831a878b8aee8b5/.github/image-1.png -------------------------------------------------------------------------------- /.github/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxiereal/XToolbox/d1a6505745fa03fccc051f573831a878b8aee8b5/.github/image-2.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .vscode 3 | lib 4 | lib64 5 | include 6 | pyvenv.cfg 7 | xtoolbox.log 8 | .pyc 9 | __pycache__ 10 | node_modules 11 | bun.lockb 12 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | Discord (In My Bio!). 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | 130 | TL;DR 131 | Don't be stupid in commits. 132 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | 341 | By downloading XToolBox you agree to the GPL-2 License. 342 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🗃️ Archived 2 | This tool has been archived for several reasons: 3 | 4 | 1. I no longer use Windows. I switched to Arch Linux about a year ago, and since then, it's been very annoying to develop, test, and build Windows software. Yes, virtual machines exist, but they just don't cut it for me. 5 | 2. I've lost interest in this software. I've been maintaining it for almost three years now, and I've simply grown bored. 6 | 3. I no longer have the time to develop XToolBox, mostly due to school work, personal life, and other projects. 7 | 8 | The site will stay up for the foreseeable future; I have no plans to stop hosting it. 9 | It's been a good run. Thank you for everything. ✌️ 10 | 11 | \- Nyx 12 | 13 | # XToolBox 14 | A toolbox full of Windows 10/11 debloating utilities.\ 15 | Made by [Nyxie](https://nyx.fuckingbitch.eu), the project's site can be found [here](https://xtoolbox.fuckingbitch.eu). 16 | 17 | ## 🚀 Quickstart 18 | 1. Press Windows + R 19 | 2. Type in `powershell` and press Enter 20 | 3. Type in `irm https://xtoolbox.fuckingbitch.eu/get | iex` and press Enter 21 | 4. You now have XToolBox running on your computer, pretty cool! 22 | 23 | ## 📑 Important 24 | 1. This program will run __ONLY__ on Windows 10 (tested on 22H2) and Windows 11 (tested on 24H2), it's not advised to use older version of Windows, like Windows 7 or Windows 8.1. If you are using these unsupported versions, please upgrade to a supported one or use Linux. I can't and won't prevent you from using XTB on an older version of Windows tho. 25 | 2. If this program gets flagged as malware, it's a false positive, here's why: 26 | 1. It downloads and executes files. 27 | 2. It's packed with UPX. 28 | 3. It uses PyInstaller as a compiler. 29 | 30 | ## 📸 Screenshots 31 | ![img1](.github/image-1.png) 32 | ![img2](.github/image-2.png) 33 | 34 | 35 | ## 🖊️ Reviews 36 | *nice toolbox* 37 | 38 | - `jonathah#1221` 39 | 40 | ------ 41 | 42 | *Thanks bro, very useful softwhere* 43 | 44 | - `@sennv` 45 | 46 | ------ 47 | 48 | *After using XTB my computer started having an erection* 49 | 50 | - `@genc1337` 51 | 52 | ------ 53 | 54 | *now I get more fps in minecraft lessgooo* 55 | 56 | - `@arxify` 57 | 58 | ------ 59 | 60 | *xtooblox made me pregnant* 61 | 62 | - `@jamieroot` 63 | 64 | ## ⚒️ Building 65 | - Remember to put in your UPX path, not to the exe, just to the directory! 66 | - The building process requires [Python](https://www.python.org/downloads/) and [Git](https://git-scm.com/downloads) 67 | ``` 68 | git clone https://github.com/nyxiereal/XToolbox 69 | pip install -r requirements.txt 70 | pip install pyinstaller 71 | pyinstaller --onefile --clean --upx-dir="path\to\upx\dir" main.py 72 | ``` 73 | 74 | ## 🔗 Links 75 | 76 | 77 | 78 | 79 | 80 | Star History Chart 81 | 82 | 83 | 84 | ## ✍️ Keywords, pls ignore 85 | input lag latency optimization performance gaming overclock oc windows ping debloat milliseconds fps boost increase decrease guide mouse tweak tweaks bios uefi pc overclocking 7 8.1 10 11 w7 w8 . w10 w11 linux game gamer optimizations frametime frametimes 0. 1080p 720p reaction time delay delayed bloat bloated debloated steam battle origin epic games quake counter strike royale br intel nvidia pascal turing ampere reflex amd ati ryzen r9 r7 r5 r3 radeon rdna core i9 i7 i5 i3 memory ram gpu ssd nvme psu power supply laptop how to screenshot on window download release date andersen blinds for pella media creation tool fast chris titus tech optimize debloater github reddit iso beebom jayztwocents script best does not work defender dell dism deutsch what mean 86 | -------------------------------------------------------------------------------- /files/AntiTrackTime.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: https://privacy.sexy — v0.13.7 — Sun, 19 Jan 2025 00:34:07 GMT 3 | :: Ensure PowerShell is available 4 | where PowerShell >nul 2>&1 || ( 5 | echo PowerShell is not available. Please install or enable PowerShell. 6 | pause & exit 1 7 | ) 8 | :: Ensure admin privileges 9 | fltmc >nul 2>&1 || ( 10 | echo Administrator privileges are required. 11 | PowerShell Start -Verb RunAs '%0' 2> nul || ( 12 | echo Right-click on the script and select "Run as administrator". 13 | pause & exit 1 14 | ) 15 | exit 0 16 | ) 17 | :: Initialize environment 18 | setlocal EnableExtensions DisableDelayedExpansion 19 | 20 | 21 | :: ---------------------------------------------------------- 22 | :: ---------Set NTP (time) server to `pool.ntp.org`---------- 23 | :: ---------------------------------------------------------- 24 | echo --- Set NTP (time) server to `pool.ntp.org` 25 | :: Configure time source 26 | w32tm /config /syncfromflags:manual /manualpeerlist:"0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org 3.pool.ntp.org" 27 | :: Stop time service if running 28 | SC queryex "w32time"|Find "STATE"|Find /v "RUNNING">Nul||( 29 | net stop w32time 30 | ) 31 | :: Start time service and sync now 32 | net start w32time 33 | w32tm /config /update 34 | w32tm /resync 35 | :: ---------------------------------------------------------- 36 | 37 | 38 | :: Pause the script to view the final state 39 | pause 40 | :: Restore previous environment settings 41 | endlocal 42 | :: Exit the script successfully 43 | exit /b 0 -------------------------------------------------------------------------------- /files/Disable Window Network Auto-Tuning.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | netsh int tcp set global autotuninglevel=disabled 3 | ipconfig /flushdns 4 | cls 5 | echo Windows Network Auto-Tuning has been Disabled! 6 | pause 7 | exit 8 | -------------------------------------------------------------------------------- /files/Enable Window Network Auto-Tuning.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | netsh int tcp set global autotuninglevel=normal 3 | ipconfig /flushdns 4 | cls 5 | echo Windows Network Auto-Tuning has been Enabled! 6 | pause 7 | exit -------------------------------------------------------------------------------- /files/MAS.bat: -------------------------------------------------------------------------------- 1 | @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "irm https://get.activated.win | iex" -------------------------------------------------------------------------------- /files/OHDW.bat: -------------------------------------------------------------------------------- 1 | @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iwr -useb 'https://simeononsecurity.ch/scripts/windowsoptimizeandharden.ps1'|iex" 2 | -------------------------------------------------------------------------------- /files/choco.bat: -------------------------------------------------------------------------------- 1 | @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" 2 | -------------------------------------------------------------------------------- /files/ctt.bat: -------------------------------------------------------------------------------- 1 | @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "irm christitus.com/win | iex" 2 | -------------------------------------------------------------------------------- /files/readme.md: -------------------------------------------------------------------------------- 1 | # This folder will be partially removed in near future 2 | Why you might ask. In v1.9 / the optimization update, there will not be a need to download __some__ tweaks. 3 | 4 | I hope y'all understand. 5 | 6 | -Xem 7 | -------------------------------------------------------------------------------- /files/win10debloater.bat: -------------------------------------------------------------------------------- 1 | @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iwr -useb https://git.io/debloat|iex" -------------------------------------------------------------------------------- /hash.json: -------------------------------------------------------------------------------- 1 | { 2 | "2.7": "DA875A1B9BF720CA6C7ADE0206A684DF90DACE9E5020CA3FCDD014B3F627C835", 3 | "2.8": "E11C9FE6B9EF6EAB5E8F50C84BEE4FA5A86A680D8BD9999113BEDABED97BA439", 4 | "2.9": "970BE758FAD250845495185CE2EE0FBD8D9D389700CBDD96683D9CE1FCAEE1AF", 5 | "3.0": "4F5DAA8D6A6B8F0C6A5549BFD9DAD0DE9B138B0E9C1D425ACABDDE2AD9C19E93", 6 | "3.1": "A7809486FCFD5D0540F8B4A995DC415CCE3BFC282EAC9DA583A79C166F2D245F" 7 | } 8 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | # Standard library imports 2 | from os import system, remove 3 | from os.path import isfile 4 | from sys import exit 5 | from time import sleep 6 | from urllib.request import urlretrieve 7 | from urllib.parse import urlparse 8 | from webbrowser import open as webopen 9 | from logging import warning, info, basicConfig, INFO 10 | 11 | # Third-party imports 12 | from rich.console import Console 13 | from rich.table import Table 14 | from rich.text import Text 15 | from rich.progress import Progress 16 | from requests.adapters import HTTPAdapter 17 | from requests import Session 18 | 19 | # Local imports 20 | from tools import chooseQuotes, footers, columns 21 | from xtools import tools, showInfo, iScrape 22 | 23 | 24 | def startfile(a): 25 | print(a) 26 | 27 | 28 | # Set Console object and version for the updater and UI 29 | c = Console() 30 | VERSION = "4.4" 31 | 32 | # Configure logging 33 | basicConfig( 34 | filename="xtoolbox.log", 35 | level=INFO, 36 | format="[%(asctime)s] [%(levelname)s] %(message)s", 37 | ) 38 | 39 | info(f"Starting XToolBox v{VERSION}") 40 | 41 | # Add HTTPAdapter settings to increase download speed 42 | adapter = HTTPAdapter(max_retries=3, pool_connections=20, pool_maxsize=10) 43 | 44 | # Add headers to bypass simple robots.txt blocking 45 | headers = { 46 | "Accept-Encoding": "gzip, deflate", 47 | "User-Agent": "Mozilla/5.0", 48 | "Cache-Control": "max-age=600", 49 | "Connection": "keep-alive", 50 | } 51 | 52 | # Create a new Session object 53 | session = Session() 54 | 55 | # Force the URL to use HTTPS and HTTPAdapter options 56 | session.mount("https://", adapter) 57 | 58 | 59 | ###### HELPER FUNCTIONS 60 | 61 | 62 | def fWrite(run: str, filename: str, content: str) -> None: 63 | """Write content to a file.""" 64 | info(f"Writing to file: {filename}") 65 | with open(filename, "w") as file: 66 | file.write(content) 67 | info(f"Finished writing to file: {filename}") 68 | 69 | 70 | # Clear the display 71 | def cls(): 72 | system("clear") 73 | 74 | 75 | # Color helpers and shi 76 | class cl: 77 | def yellow(text): 78 | return f"[yellow]{text}[/yellow]" 79 | 80 | 81 | class Printer: 82 | def green(text): 83 | c.print(f"[green][✓] {text}[/green]") 84 | 85 | def yellow(text): 86 | c.print(f"[yellow][?] {text}[/yellow]") 87 | 88 | def red(text): 89 | c.print(f"[red][✗] {text}[/red]") 90 | 91 | def zpr(text): 92 | c.print(f"[blue][>] {text}[/blue]") 93 | 94 | 95 | def download(url: str, fnam: str, name: str): 96 | """Downloads a file with progress tracking 97 | 98 | Args: 99 | url (string): URL of the file to download 100 | fnam (string): Filename for the outputted file 101 | name (string): Name to show during download 102 | """ 103 | try: 104 | # None handler (null safety in Python) 105 | if name is None: 106 | name = fnam 107 | 108 | # Force the URL to use HTTPS 109 | url = (urlparse(url))._replace(scheme="https").geturl() 110 | 111 | info(f"Starting download for {fnam} from {url}...") 112 | 113 | # Make a head request and get the filesize 114 | response = session.head(url, headers=headers) 115 | total_size = int(response.headers.get("content-length", 0)) 116 | 117 | print( 118 | f"↓ Downloading {name}, file size {round((total_size / 1024 / 1024), 1)}MB" 119 | ) 120 | 121 | # Actually get the file contents 122 | r = session.get(url, stream=True, headers=headers) 123 | 124 | # Init the progress tracking task and give it an ID 125 | progress = Progress() 126 | 127 | # Open the file and write content to it + update the progress bar 128 | with progress: 129 | task_id = progress.add_task(f"→", total=total_size) 130 | with open(fnam, "wb") as file: 131 | for data in r.iter_content(1024): 132 | file.write(data) 133 | progress.update(task_id, advance=len(data)) 134 | 135 | except KeyboardInterrupt: 136 | # Just remove the file if the download gets cancelled 137 | Printer.red("Aborting!") 138 | info(f"Aborted file download for {fnam}!") 139 | if isfile(fnam): 140 | remove(fnam) 141 | 142 | 143 | def updater(): 144 | """Check for updates""" 145 | info(f"Checking for udpates...") 146 | try: 147 | r = session.get( 148 | "https://api.github.com/repos/nyxiereal/XToolBox/releases", headers=headers 149 | ).json() 150 | up = r[0]["tag_name"].replace("v", "") 151 | 152 | if VERSION < str(up): 153 | Printer.zpr(f"New version available: {up}, do you want to update?") 154 | if yn(): 155 | download( 156 | "https://github.com/nyxiereal/XToolBox/releases/latest/download/XTBox.exe", 157 | f"XTBox.{up}.exe", 158 | "XToolBox Update", 159 | ) 160 | info(f"Update downloaded, nwe version is {up}") 161 | exit(startfile(f"XTBox.{up}.exe")) 162 | except: 163 | warning("Couldn't check for updates") 164 | Printer.red( 165 | "Couldn't check for updates, this means you might be offline, do you still want to continue" 166 | ) 167 | if yn(): 168 | pass 169 | else: 170 | exit() 171 | 172 | 173 | # function to reduce code when using interpreter() page 97 174 | def yn(prompt=""): 175 | """Simple yes/no prompt 176 | 177 | Args: 178 | prompt (str, optional): Anything you want to display. Defaults to "". 179 | 180 | Returns: 181 | bool: Return True or False. 182 | """ 183 | prompt += f"\n([green]Y[/green]/[red]n[/red]): " 184 | goodInput, YNvalue = False, False 185 | while not goodInput: 186 | goodInput, YNvalue = interpreter(97, prompt) 187 | return YNvalue 188 | 189 | 190 | # function for multiple choice downloads interpreter() page 98 191 | # returns the index of chosen option, it can return -1 if the user canceled selection 192 | # tool is , prompt is 193 | def multiChoose(tool, prompt): 194 | # ┌──────────< B - back >──────────┐ 195 | # │ │ 196 | # │ [1] name_name_name_1 │ 197 | # │ [2] name_name_name_name_2 │ 198 | # │ ... │ 199 | # │ │ 200 | # ├────────────────────────────────┤ 201 | # │ _________Prompt_________ │ 202 | # └────────────────────────────────┘ 203 | 204 | # determining window size 205 | size = 34 # min size 206 | if len(prompt) + 10 > size: 207 | size = ( 208 | len(prompt) + 10 209 | ) # the +10 is because of minimum space on both sides of the prompt (| |) 210 | for ind in range(len(tool.dwn)): 211 | if ( 212 | len(tool.getDesc(ind)) + 7 + len(str(ind + 1)) > size 213 | ): # the +7 is because of the minimum possible space in an option (│ [] │) 214 | size = ( 215 | len(tool.getDesc(ind)) + 7 + len(str(ind + 1)) 216 | ) # ind +1 cuz ind goes from 0 to max-1 217 | 218 | # ensuring symmetry 219 | if len(prompt) % 2 == 0: 220 | backMessage = "< B - back >" 221 | if size % 2 == 1: 222 | size += 1 223 | else: 224 | backMessage = "< back: B >" 225 | if size % 2 == 0: 226 | size += 1 227 | 228 | # the top bar 229 | c.print( 230 | f"┌{'─'*int((size-2-len(backMessage))/2)}{backMessage}{'─'*int((size-2-len(backMessage))/2)}┐" 231 | ) 232 | 233 | # empty line cuz it looks nice :D 234 | c.print(f"│{' '*(size-2)}│") 235 | 236 | # options 237 | for ind in range(len(tool.dwn)): 238 | c.print( 239 | f"│ [{ind+1}] {tool.getDesc(ind)}{' '*int(size-6-len(tool.getDesc(ind))-len(str(ind+1)))}│" 240 | ) 241 | 242 | # another empty 243 | c.print(f"│{' '*(size-2)}│") 244 | 245 | # prompt 246 | c.print(f"├{'─'*(size-2)}┤") 247 | c.print( 248 | f"│{' '*int((size-2-len(prompt))/2)}{prompt}{' '*int((size-2-len(prompt))/2)}│" 249 | ) 250 | c.print(f"└{'─'*(size-2)}┘") 251 | 252 | goodInput = False 253 | while not goodInput: 254 | goodInput, index = interpreter(98) 255 | if index > len(tool.dwn): 256 | goodInput = False 257 | 258 | return index 259 | 260 | 261 | def dl(url, urlr, name): 262 | """Helper to download files 263 | 264 | Args: 265 | url (str): URL to the file 266 | urlr (str): File name 267 | name (str): Name 268 | """ 269 | # Before downloading files, check if the url contains a version-code 270 | if "%UBUNTUVERSION%" in url: 271 | url = url.replace("%UBUNTUVERSION%", iScrape.ubuntu()) 272 | 273 | elif "%POP%" in url: 274 | url = iScrape.popOS(url.split(",")[1]) 275 | 276 | elif "%MINTVERSION%" in url: 277 | url = url.replace("%MINTVERSION%", iScrape.mint()) 278 | 279 | elif "%ARTIX%" in url: 280 | url = iScrape.artix(url.split(",")[1]) 281 | 282 | elif "%SOLUS%" in url: 283 | url = iScrape.solus(url.split(",")[1]) 284 | 285 | elif "%DEBIAN%" in url: 286 | url = iScrape.debian() 287 | 288 | elif r"%ENDEAVOUR%" in url: 289 | url = url.replace(r"%ENDEAVOUR%", iScrape.endeavour()) 290 | 291 | elif "%CACHYVERSION%" in url: 292 | url = url.replace("%CACHYVERSION%", iScrape.cachy()) 293 | 294 | # make sure user understands what they are about do download 295 | if ".exe" in url or ".zip" in url: 296 | c.print(f"XToolBox will download an executable from:\n → {url}") 297 | else: 298 | c.print(f"XToolBox will download a file from:\n → {url}") 299 | if not yn("Approve?"): 300 | return 301 | 302 | try: 303 | download(url, urlr, name) 304 | if urlr[-3:] != "iso": 305 | if yn(f"Run {urlr}?"): 306 | startfile(urlr) 307 | except KeyboardInterrupt: 308 | pass 309 | except: 310 | Printer.red("ERROR 3: Can't download file from the server...") 311 | 312 | input("\nPress ENTER to continue...") 313 | pageDisplay(last) 314 | 315 | 316 | # Nyaboom dirty fix 317 | def pwsh(cmd, name): 318 | c.print(f"XTBox will run the following command as powershell:\n\t{cmd}") 319 | if not yn("Approve?"): 320 | return 321 | system(cmd) 322 | 323 | 324 | # If it ain't broke, don't fix it! 325 | def checkforlinks(inp): 326 | if r"%GHOSTSPECTRE%" in inp: 327 | return iScrape.ghostSpectre() 328 | else: 329 | return inp 330 | 331 | 332 | def dwnTool(tool): 333 | index = 0 334 | if len(tool.dwn) != 1: 335 | if tool.code[0] == "l": 336 | prompt = "Choose your Distro Type" 337 | else: 338 | prompt = "Choose Version" 339 | index = multiChoose(tool, prompt) 340 | if index < 0: 341 | return 342 | 343 | if tool.command == 1: 344 | dl(tool.getDwn(index), tool.getExec(index), tool.getName(index)) 345 | elif tool.command == 2: 346 | pwsh(tool.getDwn(index), tool.getName(index)) 347 | elif tool.command == 3: 348 | i = checkforlinks(tool.getDwn(index)) 349 | c.print( 350 | f"XTBox will open:\n\t{i}" 351 | ) # webopen is used only here so no wrapper is needed for now 352 | if yn("Approve?"): 353 | webopen(i) 354 | elif tool.command == 4: 355 | c.print(f"XTBox will retrieve data from:\n\t{tool.getDwn(index)}") 356 | if yn("Approve?"): 357 | urlretrieve(tool.getDwn(index), tool.getExec(index)) 358 | elif tool.command == 5: 359 | fWrite( 360 | tool.getDwn(index) 361 | ) # this doesnt really run anything so no approval is neded 362 | 363 | 364 | def helpe(): 365 | cls() 366 | c.print( 367 | f"┌───────────────────────────────────────────────────────┐\n" 368 | f"│ Key │ Command │\n" 369 | f"│ H │ Help Page (this page) │\n" 370 | f"│ N │ Next Page │\n" 371 | f"│ B │ Previous Page (back) │\n" 372 | f"│ 99 │ Exit │\n" 373 | f"├───────────────────────────────────────────────────────┤\n" 374 | f"│ Color │ Meaning │\n" 375 | f"│ {cl.yellow('YELLOW')} │ Advanced Option │\n" 376 | f"├───────────────────────────────────────────────────────┤\n" 377 | f"│ Error │ Explanation │\n" 378 | f"│ 1 │ File already exists │\n" 379 | f"│ 2 │ Can't check for file overwrite │\n" 380 | f"│ 3 │ Can't download file from the server │\n" 381 | f"├───────────────────────────────────────────────────────┤\n" 382 | f"│ If scripts won't execute, press P │\n" 383 | f"├───────────────────────────────────────────────────────┤\n" 384 | f"│ Press ENTER/B to go back. │\n" 385 | f"└───────────────────────────────────────────────────────┘\n" 386 | ) 387 | return interpreter(0) 388 | 389 | 390 | # function that interprets user input 391 | # page is what the interface is showing and *args is additional info that may be required for some pages 392 | # !return type is based on the page number! (if not stated otherwise, returns void) 393 | def interpreter(page, prompt="> "): 394 | global lastPage 395 | choose = str(c.input(prompt)).strip().lower() # lower for easier iffing 396 | 397 | # if user inputs 99, exit the program 398 | if choose == "99": 399 | exit() 400 | 401 | # if user inputs h, open help 402 | if choose == "h" and page != 0: 403 | # return the correct values to prevent crashes 404 | if page == 98 or page == 97: 405 | if ( 406 | lastPage != None 407 | ): # prevent getting this message in EULA and similar functions 408 | c.print("Exit selection to access help!") 409 | return False, False 410 | else: 411 | while not helpe(): 412 | pass 413 | return 414 | 415 | # if user uses the Info command wrong: 416 | if choose == "i" and page > 0 and page < 20: 417 | c.print("'i' is not a valid command, if you want info type:") 418 | c.print("\ti ") 419 | c.print("For example: i d2") 420 | input("\nPress ENTER to continue...") 421 | pageDisplay(page) 422 | 423 | # page 0 (help) 424 | # returns true/false which indicate if helpe should close 425 | if page == 0: 426 | # go back 427 | if choose == "b" or choose == "": 428 | pageDisplay(last) 429 | # elevate powershell execution policy 430 | if choose == "p": 431 | # todo: add warning message that this command is about to be run (not every1 wants it) 432 | # function wrappers? 433 | pwsh( 434 | "Set-ExecutionPolicy Unrestricted -Scope CurrentUser", 435 | "SetExecutionPolicy", 436 | ) 437 | return True 438 | # not valid option 439 | else: 440 | c.print(f"No option named {choose}") 441 | return False 442 | 443 | # for pages 1-3 (tool pickers) 444 | elif page >= 1 and page <= 4: 445 | if choose == "": 446 | pass # prevent empty prompting 447 | # next page 448 | elif choose == "n": 449 | if page == 1: 450 | lastPage = pageDisplay(2) 451 | if page == 2: 452 | lastPage = pageDisplay(3) 453 | if page == 3: 454 | lastPage = pageDisplay(1) 455 | # previous page 456 | elif choose == "b": 457 | if page == 1: 458 | lastPage = pageDisplay(3) 459 | if page == 2: 460 | lastPage = pageDisplay(1) 461 | if page == 3: 462 | lastPage = pageDisplay(2) 463 | # program ID entered 464 | elif f"{choose}-{page}" in tools: 465 | dwnTool(tools[f"{choose}-{page}"]) 466 | pageDisplay(page) 467 | # i + program ID entered (user wants info) 468 | elif ( 469 | (len(choose) > 2) 470 | and (choose[0:2] == "i ") 471 | and (f"{choose[2:]}-{page}" in tools) 472 | ): 473 | showInfo(tools[f"{choose[2:]}-{page}"]) 474 | pageDisplay(page) 475 | # bad input 476 | else: 477 | c.print(f"No option named {choose}") 478 | sleep(3) 479 | pageDisplay(page) 480 | 481 | # page 97 (y/n) 482 | # returns 2 bool args: correct/incorrect input, and y/n answer 483 | elif page == 97: 484 | if choose == "y": 485 | return True, True 486 | elif choose == "n": 487 | return True, False 488 | elif choose == "": 489 | return True, True 490 | else: 491 | c.print(f"No option named {choose}") 492 | return False, False 493 | 494 | # page 98 (multiple choice download) 495 | # returns 2 args: correct/incorrect input (bool), and the chosen option (int) 496 | # if user wants to exit selection, the second return value becomes negative 497 | elif page == 98: 498 | # cancel (index < 0) 499 | if choose == "b": 500 | return True, -1 501 | # user choice 502 | elif choose.isnumeric() and int(choose) > 0: 503 | return True, int(choose) - 1 504 | else: 505 | c.print(f"No option named {choose}") 506 | return False, 0 507 | 508 | 509 | def xget(ide): 510 | try: 511 | first = f"[bold][[/bold][blue][bold]{(ide.split('-')[0])[1:]}[/blue][/bold][bold]][/bold] {Text(tools[ide].name)}" 512 | if ide in ["t1-1", "m6-2", "m7-2", "t3-2", "l4-3", "g2-3", "c6-3", "t7-1"]: 513 | return f"{first} [yellow]ADV[/yellow]" 514 | else: 515 | return first 516 | except: 517 | return "" 518 | 519 | 520 | def pageDisplay(page): 521 | global last, welcome 522 | last = page 523 | cls() 524 | # Show the predefined "quote" only the first time the program is ran. 525 | if welcome == 0: 526 | table = Table(title=f"XToolBox | v{VERSION}, Made by Nyxie.", show_footer=True) 527 | welcome = 1 528 | else: 529 | table = Table(title=f"XToolBox | {chooseQuotes()}", show_footer=True) 530 | 531 | table.add_column( 532 | f"[[blue]{(columns[page][0][0]).capitalize()}[/blue]] {columns[page][0][1]}", 533 | footers[0], 534 | justify="left", 535 | min_width=24, 536 | ) 537 | table.add_column( 538 | f"[[blue]{(columns[page][1][0]).capitalize()}[/blue]] {columns[page][1][1]}", 539 | footers[1], 540 | justify="left", 541 | min_width=24, 542 | ) 543 | table.add_column( 544 | f"[[blue]{(columns[page][2][0]).capitalize()}[/blue]] {columns[page][2][1]}", 545 | footers[2], 546 | justify="left", 547 | min_width=24, 548 | ) 549 | table.add_column( 550 | f"[[blue]{(columns[page][3][0]).capitalize()}[/blue]] {columns[page][3][1]}", 551 | f"[blue]{page}/{len(columns)-1}[/blue]", 552 | min_width=24, 553 | ) 554 | 555 | for i in range(15): 556 | if i != 0: 557 | table.add_row( 558 | xget(f"{columns[page][0][0]}{i}-{page}"), 559 | xget(f"{columns[page][1][0]}{i}-{page}"), 560 | xget(f"{columns[page][2][0]}{i}-{page}"), 561 | xget(f"{columns[page][3][0]}{i}-{page}"), 562 | ) 563 | 564 | c.print(table) 565 | interpreter(page) 566 | 567 | 568 | # init 569 | updater() 570 | welcome = 0 571 | while True: 572 | try: 573 | pageDisplay(1) 574 | except KeyboardInterrupt: 575 | exit(print("\nbye!")) 576 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | rich 3 | psutil 4 | BeautifulSoup4 -------------------------------------------------------------------------------- /site/get: -------------------------------------------------------------------------------- 1 | # This is a script to download the latest version of XToolbox from the GitHub repository. 2 | 3 | $url = "https://github.com/nyxiereal/XToolbox/releases/latest/download/XTBox.exe" 4 | 5 | $output = "XTBox.exe" 6 | 7 | Invoke-WebRequest -Uri $url -OutFile $output 8 | 9 | Start-Process -FilePath $output -Wait -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | XToolBox 9 | 10 | 11 | 12 | 13 | 14 |
15 |

// XToolBox

16 |
17 |

> This is the official website for this project, if you stumble upon any other site, it's fake. 18 |

19 |

> XToolBox is an application made by Nyxiereal to optimize Windows 10/11 systems easier. 21 |

22 |

> It contains over 150 tools carefully picked to make your job as easy and painless as possible. 23 |

24 |

> Here are some statistics from our GitHub. 26 |

27 |
28 | GitHub Repo stars 30 | GitHub Downloads (all assets, all releases) 32 | GitHub code size in bytes 34 | 35 | 36 |
37 |
38 |
39 |
40 |

// Downloads

41 |

> You can quickly download and launch XToolBox by opening PowerShell and typing 42 | in  43 | irm https://xtoolbox.fuckingbitch.eu/get | 44 | iex 45 |

46 |

> GitHub 47 | Releases 48 |

49 |
50 |
51 |

// Notes

52 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "site", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc && vite build", 9 | "preview": "vite preview" 10 | }, 11 | "devDependencies": { 12 | "typescript": "~5.7.2", 13 | "vite": "^6.1.0" 14 | }, 15 | "dependencies": { 16 | "@catppuccin/tailwindcss": "^0.1.6", 17 | "@tailwindcss/vite": "^4.0.4", 18 | "tailwindcss": "^4.0.4" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /site/styles.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | 3 | .font-code { 4 | font-family: "Fira Code", monospace; 5 | } 6 | 7 | .font-noto-sans { 8 | font-family: "Noto Sans", sans-serif; 9 | } 10 | 11 | @plugin "@catppuccin/tailwindcss"; 12 | 13 | @theme inline { 14 | --color-ctp-rosewater: rgba(var(--ctp-rosewater)); 15 | --color-ctp-flamingo: rgba(var(--ctp-flamingo)); 16 | --color-ctp-pink: rgba(var(--ctp-pink)); 17 | --color-ctp-mauve: rgba(var(--ctp-mauve)); 18 | --color-ctp-red: rgba(var(--ctp-red)); 19 | --color-ctp-maroon: rgba(var(--ctp-maroon)); 20 | --color-ctp-peach: rgba(var(--ctp-peach)); 21 | --color-ctp-yellow: rgba(var(--ctp-yellow)); 22 | --color-ctp-green: rgba(var(--ctp-green)); 23 | --color-ctp-teal: rgba(var(--ctp-teal)); 24 | --color-ctp-sky: rgba(var(--ctp-sky)); 25 | --color-ctp-sapphire: rgba(var(--ctp-sapphire)); 26 | --color-ctp-blue: rgba(var(--ctp-blue)); 27 | --color-ctp-lavender: rgba(var(--ctp-lavender)); 28 | --color-ctp-text: rgba(var(--ctp-text)); 29 | --color-ctp-subtext1: rgba(var(--ctp-subtext1)); 30 | --color-ctp-subtext0: rgba(var(--ctp-subtext0)); 31 | --color-ctp-overlay2: rgba(var(--ctp-overlay2)); 32 | --color-ctp-overlay1: rgba(var(--ctp-overlay1)); 33 | --color-ctp-overlay0: rgba(var(--ctp-overlay0)); 34 | --color-ctp-surface2: rgba(var(--ctp-surface2)); 35 | --color-ctp-surface1: rgba(var(--ctp-surface1)); 36 | --color-ctp-surface0: rgba(var(--ctp-surface0)); 37 | --color-ctp-base: rgba(var(--ctp-base)); 38 | --color-ctp-mantle: rgba(var(--ctp-mantle)); 39 | --color-ctp-crust: rgba(var(--ctp-crust)); 40 | } -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "module": "ESNext", 6 | "lib": [ 7 | "ES2020", 8 | "DOM", 9 | "DOM.Iterable" 10 | ], 11 | "skipLibCheck": true, 12 | /* Bundler mode */ 13 | "moduleResolution": "bundler", 14 | "allowImportingTsExtensions": true, 15 | "isolatedModules": true, 16 | "moduleDetection": "force", 17 | "noEmit": true, 18 | /* Linting */ 19 | "strict": true, 20 | "noUnusedLocals": true, 21 | "noUnusedParameters": true, 22 | "noFallthroughCasesInSwitch": true, 23 | "noUncheckedSideEffectImports": true 24 | }, 25 | "include": [ 26 | "src" 27 | ] 28 | } -------------------------------------------------------------------------------- /site/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /site/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import tailwindcss from '@tailwindcss/vite' 3 | export default defineConfig({ plugins: [tailwindcss(),], }) -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- 1 | from random import choice 2 | from typing import List 3 | 4 | 5 | def chooseQuotes() -> str: 6 | """Return a random quote.""" 7 | quotes = [ 8 | "FIRST!111!!!11!!1!1", 9 | "Heya~", 10 | "Mewo", 11 | "Made with love and sulfuric acid", 12 | "Powered by nuclear energy", 13 | "See? I have the sun!", 14 | "A story, like thousands other stories", 15 | "you found me. Why?", 16 | "Fish!", 17 | "So you woke up in an unfamiliar, dark location?", 18 | "p a n c a k e s", 19 | "You only have one shot", 20 | "Hey guys...", 21 | "GEOMETRY DASH REFERENCE?!?!??!", 22 | "Send dolors or explod", 23 | "Just the two of us", 24 | "We can make it if we try", 25 | "Fries are really yummy", 26 | "Rule number 43: No edging", 27 | "As seen on wired", 28 | "Softpedia certified", 29 | "Thanks for the support!", 30 | "l lI ll l_", 31 | "Also try revanced", 32 | "Over 100k downloads", 33 | "eXplod", 34 | "Welcome, friend", 35 | "Welcome to NGINX!", 36 | "Yippee", 37 | "As seen on notrodan", 38 | "My cabron monoxied alamr boke", 39 | "LiveLeak", 40 | "Elon musk is really not a good person", 41 | "Spoinkbub", 42 | "BIG MEN", 43 | "** siggy **", 44 | "I ransomeware", 45 | "Hey, how do I unzip a RAR file??", 46 | "TWITTER, TWITTER FOR ANDROID", 47 | "How to become shrigma male tutorial | RAREST MALE TYPE!?", 48 | "Trans right!", 49 | "WhyCantITypeSpaces", 50 | "explod thabks", 51 | "tetris moment", 52 | "I identify as kilometers per second because I want to km/s", 53 | "WhatDoYouMeanShellShattered?!", 54 | "Cancelled.", 55 | ":trolley:", 56 | "luftvärnskanonvagn", 57 | "No bobucks?", 58 | "UwU. *Steals your toast*", 59 | "A new update is available!", 60 | "509gb", 61 | "FREE BOBUX GENERATOR!?!?!", 62 | "sorry can't help it just a scorpio", 63 | '"bitch" -@danilwhale', 64 | '"xtooblox made me pregnant" -@editdev', 65 | '"basketmball" -@cute.eeper', 66 | "UEE 😭🥺💧Eu💧 💧 E E 😭😭 E EUE 🥺🥺😭 UUUU 😭🥺💧🥺😭ue💧 ee😭🥺💧 ue🥺 e e e😭. e💧🥺😭Uueuuue.", 67 | "polugon dunute >:3", 68 | "spotify album 2gANfR09MoBGPXKqYPTGw7" 69 | "Hi I have a Pixel 4a grapheneos and I need to make Discord most privacy friendly and secure as...", 70 | "Hey Ya!", 71 | '"do not consider doing web dev it is not worth it" - @jenku', 72 | "PREPARE THYSELF", 73 | "THY END IS NOW", 74 | "plap guy...", 75 | "gayass? i find it quite straight", 76 | '"amogus" -@martinishere', 77 | ] 78 | return choice(quotes) 79 | 80 | 81 | footers: List[str] = ["H - Help", "^C - Exit", "N/B - Pages"] 82 | 83 | columns: List[List[List[str]]] = [ 84 | ["bamboozled", "code", "broke", "down"], 85 | [["d", "Debloat"], ["t", "Tweaks"], ["c", "Cleaning"], ["a", "Apps"]], 86 | [["l", "Linux"], ["w", "Windows"], ["m", "OS Mods"], ["a", "Apps"]], 87 | [ 88 | ["l", "Minecraft Launchers"], 89 | ["g", "Game Launchers"], 90 | ["r", "Redists"], 91 | ["a", "Apps"], 92 | ], 93 | ] 94 | -------------------------------------------------------------------------------- /xtools.py: -------------------------------------------------------------------------------- 1 | # Standard library imports 2 | from re import findall, search 3 | 4 | # Third-party imports 5 | from rich.console import Console 6 | from requests import get 7 | from bs4 import BeautifulSoup 8 | 9 | c = Console() 10 | 11 | 12 | def latest(meow): 13 | r = get(f"https://api.github.com/repos/{meow}/releases").json() 14 | return r[0]["tag_name"] 15 | 16 | 17 | class iScrape: 18 | """Class for scraping information.""" 19 | 20 | def ubuntu(): 21 | # URL of the Ubuntu releases page 22 | url = "https://releases.ubuntu.com/" 23 | 24 | # Send an HTTP GET request to the URL 25 | response = get(url) 26 | 27 | # Parse the HTML content of the page 28 | soup = BeautifulSoup(response.text, "html.parser") 29 | 30 | # Find the latest version from the page 31 | latest_versions = soup.findAll("a", class_="p-link--inverted") 32 | 33 | numbers_only = [] 34 | for version in latest_versions: 35 | version_text = version.text # Extract text from the Tag object 36 | numbers = findall(r"\d+\.\d+\.*\d*", version_text) 37 | numbers_only.extend(numbers) 38 | 39 | max_item = max(numbers_only) 40 | return max_item 41 | 42 | def popOS(ver): 43 | if ver == "raspi": 44 | arch = "arm64" 45 | else: 46 | arch = "amd64" 47 | r = get(f"https://api.pop-os.org/builds/22.04/{ver}?arch={arch}") 48 | return r.json()["url"] 49 | 50 | def mint(): 51 | r = get("https://linuxmint.com/download.php") 52 | soup = BeautifulSoup(r.text, "html.parser") 53 | return findall( 54 | r"[\d\.]+", 55 | ( 56 | soup.find( 57 | "h1", 58 | class_="font-weight-bold display-5 display-lg-4 mb-2 mb-md-n0 mt-title", 59 | ).text 60 | ), 61 | )[0] 62 | 63 | def artix(ver): 64 | r = get("https://artixlinux.org/download.php") 65 | soup = BeautifulSoup(r.text, "html.parser") 66 | txt = soup.findAll("td") 67 | 68 | x = [] 69 | for i in txt: 70 | if i.text.endswith(".iso"): 71 | if "openrc" in i.text: 72 | if ver in i.text: 73 | return f"https://iso.artixlinux.org/iso/{i.text}" 74 | 75 | def solus(ver): 76 | r = get("https://getsol.us/download") 77 | soup = BeautifulSoup(r.text, "html.parser") 78 | txt = soup.findAll("a", class_="button") 79 | 80 | for i in txt: 81 | if ver in i.get("href"): 82 | return i.get("href") 83 | 84 | def debian(): 85 | r = get("https://www.debian.org/download") 86 | soup = BeautifulSoup(r.text, "html.parser") 87 | txt = soup.findAll("a") 88 | 89 | for i in txt: 90 | if "amd64-netinst.iso" in i.get("href"): 91 | return i.get("href") 92 | 93 | def endeavour(): 94 | r = get("https://mirror.moson.org/endeavouros/iso/") 95 | soup = BeautifulSoup(r.text, "html.parser") 96 | txt = soup.findAll("a") 97 | 98 | pattern = r"(\d{4}\.\d{2}\.\d{2})" 99 | 100 | # Initialize variables to store the latest version and filename 101 | latest_version = "" 102 | 103 | # Loop through the filenames to find the latest version 104 | for i in txt: 105 | match = search(pattern, i.get("href")) 106 | if match: 107 | version = match.group(1) 108 | if version > latest_version: 109 | latest_version = version 110 | return i.get("href") 111 | 112 | def cachy(): 113 | r = get( 114 | "https://cachyos.org/download/", 115 | headers={ 116 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" 117 | }, 118 | ) 119 | # find every case matching https:\/\/cdn77.cachyos.org\/ISO\/handheld\/[0-9]+\/ 120 | txt = findall(r"https:\/\/cdn77.cachyos.org\/ISO\/handheld\/[0-9]+\/", r.text) 121 | 122 | return txt[0].split("handheld/")[1].split("/")[0] 123 | 124 | def ghostSpectre(): 125 | headers = { 126 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" 127 | } 128 | 129 | s1 = get("https://ghostclouds.xyz/wp/w10-pro-aio-x64/") 130 | soup = BeautifulSoup(s1.text, "html.parser") 131 | txt = soup.findAll("a") 132 | 133 | x = [] 134 | 135 | for i in txt: 136 | if ( 137 | (("w10" in str(i.get("href"))) or ("win10" in str(i.get("href")))) 138 | and ("aio" in str(i.get("href"))) 139 | and ("download" in str(i.get("href"))) 140 | ): 141 | x.append(i.get("href")) 142 | 143 | s2 = get(x[0]) 144 | soup = BeautifulSoup(s2.text, "html.parser") 145 | txt = soup.findAll( 146 | "a", class_="wpdm-download-link download-on-click btn btn-primary" 147 | ) 148 | s3 = txt[0]["data-downloadurl"] 149 | 150 | r = get(s3, headers=headers) 151 | soup = BeautifulSoup(r.text, "html.parser") 152 | docsurl = soup.find("meta", attrs={"property": "og:url"})["content"] 153 | 154 | # search for https:\/\/pixeldrain.com\/u\/[a-z|A-Z|0-9]+ as regex in the response 155 | s4 = get(docsurl, headers=headers) 156 | pattern = r"Pixel:[a-z|\\|0-9]+http:\/\/tinyurl.com\/[a-z|A-Z|0-9]+ " 157 | return "http://" + (findall(pattern, s4.text)[0].split("http://"))[1] 158 | 159 | 160 | class Dwn: 161 | """Class for storing download data on individual download links.""" 162 | 163 | # since the urls can change with updates, this class accepts 1 or more stationary url parts 164 | # later when the assembleUrl() is called, the changeable url part is added between 165 | # the result gets saved into self.url which is by default empty 166 | # each download link may be slightly different with the name and executable of the program that is downloaded 167 | # that is why those parameters are provided in the constructor 168 | def __init__(self, name, description, executable, *url_parts): 169 | self.name = name 170 | if description == "": 171 | self.description = name 172 | else: 173 | self.description = description 174 | self.executable = executable 175 | self.url_parts = list(url_parts) 176 | self.url = "" 177 | 178 | def assembleUrl(self, missing): 179 | for i in range(len(self.url_parts)): 180 | if i + 1 == len(self.url_parts): 181 | self.url += self.url_parts[i] 182 | else: 183 | self.url += self.url_parts[i] + missing 184 | 185 | 186 | def showInfo(tool: str) -> None: 187 | """Display information on a specific tool.""" 188 | # print basic info 189 | c.print(f"Name: {tool.name}") 190 | if tool.command == 1: 191 | c.print("Download links:") 192 | elif tool.command == 2: 193 | c.print("Powershell commands:") 194 | elif tool.command == 3: 195 | c.print("Links that will open:") 196 | elif tool.command == 4: 197 | c.print("Links that will be retrieved:") 198 | elif tool.command == 5: 199 | c.print("Will be written to a new file:") 200 | for i in range(len(tool.dwn)): 201 | c.print(f"\t{tool.getDwn(i)}") 202 | 203 | # check if tool.info leads to a website, if not, print it 204 | 205 | c.print("Additional info:") 206 | if tool.info == "": 207 | c.print("\tWhoopsies, we dont have any additional info on this tool :/") 208 | else: 209 | c.print(f"\t{tool.info}") 210 | 211 | input("\nPress ENTER to continue...") 212 | 213 | 214 | class Tool: 215 | """Class for storing tools.""" 216 | 217 | # name: the name of the tool, code: unique tool idetity 218 | # command type: 1-dl, 2-runaspowershell, 3-webopen, 4-urlretrieve, 5-fwrite 219 | # gotlatest: a bool that checks if self.latest is yet to be updated 220 | # latestfn: function to run to get data on latest version and save it to self.latest 221 | # info: additional information on a tool 222 | # dwn: list of Dwn objects that allows a tool to have multiple download links 223 | def __init__(self, name, code, command, gotLatest, latestfn, info, dwn): 224 | self.name = name 225 | self.code = code 226 | self.command = command 227 | 228 | self.gotlatest = gotLatest 229 | self.latestfn = latestfn 230 | self.latest = "" 231 | 232 | self.info = info 233 | self.dwn = dwn 234 | 235 | def getLatest(self): 236 | if not self.gotlatest: 237 | c.print("Checking for latest version...") 238 | self.latest = self.latestfn() 239 | c.print(f"Found it: {self.latest}") 240 | self.gotlatest = True 241 | 242 | def getDwn(self, num): 243 | self.getLatest() 244 | if num >= len(self.dwn) or num < 0: 245 | raise IndexError("Tool.getDwn: out of bounds!") 246 | if self.dwn[num].url == "": 247 | self.dwn[num].assembleUrl(self.latest) 248 | return self.dwn[num].url 249 | 250 | def getExec(self, num): 251 | if num >= len(self.dwn) or num < 0: 252 | raise IndexError("Tool.getDwn: out of bounds!") 253 | return self.dwn[num].executable 254 | 255 | def getName(self, num): 256 | if num >= len(self.dwn) or num < 0: 257 | raise IndexError("Tool.getDwn: out of bounds!") 258 | return self.dwn[num].name 259 | 260 | def getDesc(self, num): 261 | if num >= len(self.dwn) or num < 0: 262 | raise IndexError("Tool.getDwn: out of bounds!") 263 | return self.dwn[num].description 264 | 265 | 266 | tools = { 267 | "d1-1": Tool( 268 | "WinScript", 269 | "d1-1", 270 | 1, 271 | True, 272 | lambda: "", 273 | r"https://github.com/flick9000/winscript", 274 | [ 275 | Dwn( 276 | "WinScript Portable", 277 | "", 278 | "WinScript-Portable.exe", 279 | r"https://github.com/flick9000/winscript/releases/latest/download/winscript-portable.exe", 280 | ), 281 | Dwn( 282 | "WinScript Installer", 283 | "", 284 | "WinScript-Installer.exe", 285 | r"https://github.com/flick9000/winscript/releases/latest/download/winscript-installer.exe", 286 | ), 287 | ], 288 | ), 289 | "d2-1": Tool( 290 | "Hone", 291 | "d2-1", 292 | 1, 293 | True, 294 | lambda: "", 295 | r"https://hone.gg", 296 | [ 297 | Dwn( 298 | "Hone ⚠️ CONTAINS ADS ⚠️", 299 | "", 300 | "HoneInstaller.exe", 301 | r"https://download.overwolf.com/installer/prod/cfbc7eeb79ab95eb3f553c4344a186ee/Hone%20-%20Installer.exe", 302 | ), 303 | Dwn( 304 | "HoneCTRL", 305 | "", 306 | "HoneCtrl.bat", 307 | r"https://raw.githubusercontent.com/luke-beep/HoneCTRL/main/HoneCtrl.bat", 308 | ), 309 | ], 310 | ), 311 | "d3-1": Tool( 312 | "ShutUp10++", 313 | "d3-1", 314 | 1, 315 | True, 316 | lambda: "", 317 | r"https://www.oo-software.com/shutup10", 318 | [ 319 | Dwn( 320 | "ShutUp10++", 321 | "", 322 | "ShutUp10.exe", 323 | r"https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe", 324 | ) 325 | ], 326 | ), 327 | "d4-1": Tool( 328 | "Optimizer", 329 | "d4-1", 330 | 1, 331 | False, 332 | lambda: str(latest("hellzerg/optimizer")), 333 | r"https://github.com/hellzerg/optimizer", 334 | [ 335 | Dwn( 336 | "Optimizer", 337 | "", 338 | "Optimizer.exe", 339 | r"https://github.com/hellzerg/optimizer/releases/latest/download/Optimizer-", 340 | r".exe", 341 | ) 342 | ], 343 | ), 344 | "d5-1": Tool( 345 | "PyDebloatX", 346 | "d5-1", 347 | 1, 348 | True, 349 | lambda: "", 350 | r"https://github.com/Teraskull/PyDebloatX", 351 | [ 352 | Dwn( 353 | "PyDebloatX", 354 | "", 355 | "PyDebloatX-Portable.exe", 356 | r"https://github.com/Teraskull/PyDebloatX/releases/latest/download/PyDebloatX_portable.exe", 357 | ) 358 | ], 359 | ), 360 | "d6-1": Tool( 361 | "QuickBoost", 362 | "d6-1", 363 | 1, 364 | True, 365 | lambda: "", 366 | r"https://github.com/SanGraphic/QuickBoost", 367 | [ 368 | Dwn( 369 | "QuickBoost", 370 | "", 371 | "QuickBoost.exe", 372 | r"https://github.com/SanGraphic/QuickBoost/releases/latest/download/QuickBoost.exe", 373 | ) 374 | ], 375 | ), 376 | "d7-1": Tool( 377 | "WindowsSpyBlocker", 378 | "d7-1", 379 | 1, 380 | True, 381 | lambda: "", 382 | r"https://github.com/crazy-max/WindowsSpyBlocker", 383 | [ 384 | Dwn( 385 | "WindowsSpyBlocker", 386 | "", 387 | "WindowsSpyBlocker.exe", 388 | r"https://github.com/crazy-max/WindowsSpyBlocker/releases/latest/download/WindowsSpyBlocker.exe", 389 | ) 390 | ], 391 | ), 392 | "d8-1": Tool( 393 | "PrivateZilla", 394 | "d8-1", 395 | 1, 396 | True, 397 | lambda: "", 398 | r"https://github.com/builtbybel/privatezilla", 399 | [ 400 | Dwn( 401 | "PrivateZilla", 402 | "", 403 | "PrivateZilla.zip", 404 | r"https://github.com/builtbybel/privatezilla/releases/latest/download/privatezilla.zip", 405 | ) 406 | ], 407 | ), 408 | "d9-1": Tool( 409 | "ZusierAIO", 410 | "d9-1", 411 | 1, 412 | True, 413 | lambda: "", 414 | r"https://github.com/Zusier/Zusiers-optimization-Batch", 415 | [ 416 | Dwn( 417 | "ZusierAIO", 418 | "", 419 | "ZusierAIO.bat", 420 | r"https://raw.githubusercontent.com/Zusier/Zusiers-optimization-Batch/master/Zusier%20AIO.bat", 421 | ) 422 | ], 423 | ), 424 | "d10-1": Tool( 425 | "CoutX", 426 | "d10-1", 427 | 1, 428 | True, 429 | lambda: "", 430 | r"https://github.com/UnLovedCookie/CoutX", 431 | [ 432 | Dwn( 433 | "CoutX", 434 | "", 435 | "CoutX-Setup.exe", 436 | r"https://github.com/UnLovedCookie/CoutX/releases/latest/download/CoutX-Setup.exe", 437 | ) 438 | ], 439 | ), 440 | "d11-1": Tool( 441 | "WPD", 442 | "d11-1", 443 | 1, 444 | True, 445 | lambda: "", 446 | r"https://wpd.app/", 447 | [Dwn("WPD", "", "WPD.zip", r"https://wpd.app/get/latest.zip")], 448 | ), 449 | "t1-1": Tool( 450 | "InsiderEnroller", 451 | "t1-1", 452 | 1, 453 | False, 454 | lambda: str(latest("Jathurshan-2019/Insider-Enroller")), 455 | r"https://github.com/Jathurshan-2019/Insider-Enroller", 456 | [ 457 | Dwn( 458 | "InsiderEnroller", 459 | "", 460 | "InsiderEnroller.zip", 461 | r"https://github.com/Jathurshan-2019/Insider-Enroller/releases/latest/download/Insider_Enrollerv", 462 | r".zip", 463 | ) 464 | ], 465 | ), 466 | "t2-1": Tool( 467 | "Windows11Fixer", 468 | "t2-1", 469 | 1, 470 | False, 471 | lambda: str(latest("99natmar99/Windows-11-Fixer")), 472 | r"https://github.com/99natmar99/Windows-11-Fixer", 473 | [ 474 | Dwn( 475 | "Windows11Fixer", 476 | "", 477 | "Windows11Fixer.zip", 478 | r"https://github.com/99natmar99/Windows-11-Fixer/releases/latest/download/Windows.11.Fixer.v", 479 | r".Portable.zip", 480 | ) 481 | ], 482 | ), 483 | "t3-1": Tool( 484 | "NoRoundedCorners", 485 | "t3-1", 486 | 1, 487 | True, 488 | lambda: "", 489 | r"https://github.com/valinet/Win11DisableRoundedCorners", 490 | [ 491 | Dwn( 492 | "AntiRoundCorners", 493 | "", 494 | "AntiRoundCorners.exe", 495 | r"https://github.com/valinet/Win11DisableRoundedCorners/releases/latest/download/Win11DisableOrRestoreRoundedCorners.exe", 496 | ) 497 | ], 498 | ), 499 | "t4-1": Tool( 500 | "Fix Drag&Drop", 501 | "t4-1", 502 | 1, 503 | True, 504 | lambda: "", 505 | r"https://github.com/HerMajestyDrMona/Windows11DragAndDropToTaskbarFix", 506 | [ 507 | Dwn( 508 | "Fix Drag&Drop", 509 | "", 510 | "FixDragAndDrop.exe", 511 | r"https://github.com/HerMajestyDrMona/Windows11DragAndDropToTaskbarFix/releases/latest/download/Windows11DragAndDropToTaskbarFix.exe", 512 | ) 513 | ], 514 | ), 515 | "t5-1": Tool( 516 | "Winaero Tweaker", 517 | "t5-1", 518 | 1, 519 | True, 520 | lambda: "", 521 | r"https://winaero.com/winaero-tweaker/", 522 | [ 523 | Dwn( 524 | "Winaero Tweaker", 525 | "", 526 | "WinaeroTweaker.zip", 527 | r"https://winaerotweaker.com/download/winaerotweaker.zip", 528 | ) 529 | ], 530 | ), 531 | "t6-1": Tool( 532 | "CTT", 533 | "t6-1", 534 | 2, 535 | True, 536 | lambda: "", 537 | r"https://github.com/ChrisTitusTech/winutil/blob/main/winutil.ps1", 538 | [Dwn("CTT", "", "", r"irm christitus.com/win | iex")], 539 | ), 540 | "t7-1": Tool( 541 | "REAL", 542 | "t7-1", 543 | 1, 544 | True, 545 | lambda: "", 546 | r"https://github.com/miniant-git/REAL", 547 | [ 548 | Dwn( 549 | "REAL", 550 | "", 551 | "REAL.exe", 552 | r"https://github.com/miniant-git/REAL/releases/latest/download/REAL.exe", 553 | ) 554 | ], 555 | ), 556 | "t8-1": Tool( 557 | "NVCleanstall", 558 | "t8-1", 559 | 3, 560 | True, 561 | lambda: "", 562 | r"", 563 | [ 564 | Dwn( 565 | "NVCleanstall", 566 | "", 567 | "", 568 | r"https://www.techpowerup.com/download/techpowerup-nvcleanstall/", 569 | ) 570 | ], 571 | ), 572 | "t9-1": Tool( 573 | "SophiApp", 574 | "t9-1", 575 | 1, 576 | False, 577 | lambda: str(latest("Sophia-Community/SophiApp")), 578 | r"https://github.com/Sophia-Community/SophiApp", 579 | [ 580 | Dwn( 581 | "SophiApp", 582 | "", 583 | "SophiApp.zip", 584 | r"https://github.com/Sophia-Community/SophiApp/releases/download/", 585 | r"/SophiApp.zip", 586 | ) 587 | ], 588 | ), 589 | "t10-1": Tool( 590 | "PrivacySexy", 591 | "t10-1", 592 | 1, 593 | False, 594 | lambda: str(latest("undergroundwires/privacy.sexy")), 595 | r"https://privacy.sexy/", 596 | [ 597 | Dwn( 598 | "PrivacySexy", 599 | "", 600 | "PrivacySexy-setup.exe", 601 | r"https://github.com/undergroundwires/privacy.sexy/releases/latest/download/privacy.sexy-Setup-", 602 | r".exe", 603 | ) 604 | ], 605 | ), 606 | "a1-1": Tool( 607 | "Choco", 608 | "a1-1", 609 | 1, 610 | True, 611 | lambda: "", 612 | r"https://github.com/xemulat/XToolbox/blob/main/files/choco.bat", 613 | [ 614 | Dwn( 615 | "Choco", 616 | "", 617 | "choco.bat", 618 | r"https://raw.githubusercontent.com/xemulat/XToolBox/main/files/choco.bat", 619 | ) 620 | ], 621 | ), 622 | "a2-1": Tool( 623 | "Brave Browser", 624 | "a2-1", 625 | 1, 626 | True, 627 | lambda: "", 628 | r"https://brave.com/", 629 | [ 630 | Dwn( 631 | "Brave Browser", 632 | "", 633 | "Brave-Setup.exe", 634 | r"https://referrals.brave.com/latest/BraveBrowserSetup.exe", 635 | r"", 636 | ) 637 | ], 638 | ), 639 | "a3-1": Tool( 640 | "Firefox Setup", 641 | "a3-1", 642 | 1, 643 | True, 644 | lambda: "", 645 | r"https://www.mozilla.org/firefox", 646 | [ 647 | Dwn( 648 | "Firefox Setup", 649 | "", 650 | "Firefox-Setup.exe", 651 | r"https://download.mozilla.org/?product=firefox-stub&os=win&lang=en-US", 652 | ) 653 | ], 654 | ), 655 | "a4-1": Tool( 656 | "Lively Wallpaper", 657 | "a4-1", 658 | 1, 659 | False, 660 | lambda: str(latest("rocksdanister/lively")).replace(".", ""), 661 | r"https://github.com/rocksdanister/lively", 662 | [ 663 | Dwn( 664 | "Lively Wallpaper", 665 | "", 666 | "LivelyWallpaper-Setup.exe", 667 | r"https://github.com/rocksdanister/lively/releases/latest/download/lively_setup_x86_full_v", 668 | r".exe", 669 | ) 670 | ], 671 | ), 672 | "a5-1": Tool( 673 | "Floorp", 674 | "a5-1", 675 | 1, 676 | True, 677 | lambda: "", 678 | r"https://floorp.app/", 679 | [ 680 | Dwn( 681 | "Floorp", 682 | "", 683 | "Floorp-Setup.exe", 684 | r"https://github.com/Floorp-Projects/Floorp/releases/latest/download/floorp-stub.installer.exe", 685 | ) 686 | ], 687 | ), 688 | "a6-1": Tool( 689 | "qBittorrent EE", 690 | "a6-1", 691 | 1, 692 | False, 693 | lambda: str(latest("c0re100/qBittorrent-Enhanced-Edition")), 694 | r"https://github.com/c0re100/qBittorrent-Enhanced-Edition", 695 | [ 696 | Dwn( 697 | "qBittorrent Enhanced Edition", 698 | "", 699 | "qBittorrent-EE-Setup.exe", 700 | r"https://github.com/c0re100/qBittorrent-Enhanced-Edition/releases/latest/download/qbittorrent_enhanced_", 701 | r"_qt6_x64_setup.exe", 702 | ) 703 | ], 704 | ), 705 | "a7-1": Tool( 706 | "Rainmeter", 707 | "a7-1", 708 | 1, 709 | True, 710 | lambda: "", 711 | r"https://github.com/rainmeter/rainmeter", 712 | [ 713 | Dwn( 714 | "Rainmeter", 715 | "", 716 | "Rainmeter-Setup.exe", 717 | r"https://github.com/rainmeter/rainmeter/releases/download/v4.5.17.3700/Rainmeter-4.5.17.exe", 718 | ) 719 | ], 720 | ), 721 | "a8-1": Tool( 722 | "7-Zip ZSTD", 723 | "a8-1", 724 | 1, 725 | True, 726 | lambda: "", 727 | r"https://github.com/mcmilk/7-Zip-zstd", 728 | [ 729 | Dwn( 730 | "7-Zip", 731 | "", 732 | "7Zip-zstd.exe", 733 | r"https://github.com/mcmilk/7-Zip-zstd/releases/download/v22.01-v1.5.5-R3/7z22.01-zstd-x64.exe", 734 | ) 735 | ], 736 | ), 737 | "a9-1": Tool( 738 | "Memory Cleaner", 739 | "a9-1", 740 | 1, 741 | True, 742 | lambda: "", 743 | r"https://www.koshyjohn.com/software/memclean/", 744 | [ 745 | Dwn( 746 | "Memory Cleaner", 747 | "", 748 | "MemoryCleaner.exe", 749 | r"https://www.koshyjohn.com/software/MemClean.exe", 750 | ) 751 | ], 752 | ), 753 | "a10-1": Tool( 754 | "Nilesoft Shell", 755 | "a10-1", 756 | 1, 757 | False, 758 | lambda: "", 759 | r"https://nilesoft.org/", 760 | [ 761 | Dwn( 762 | "Nilesoft Shell", 763 | "", 764 | "Shell-Setup.exe", 765 | r"https://nilesoft.org/download/shell/1.9/setup.exe", 766 | ) 767 | ], 768 | ), 769 | "a11-1": Tool( 770 | "SimpleDnsCrypt", 771 | "a11-1", 772 | 1, 773 | False, 774 | lambda: str(latest("instantsc/SimpleDnsCrypt")), 775 | r"https://github.com/instantsc/SimpleDnsCrypt", 776 | [ 777 | Dwn( 778 | "SimpleDnsCrypt", 779 | "", 780 | "SimpleDNSCrypt-Setup.msi", 781 | r"https://github.com/instantsc/SimpleDnsCrypt/releases/latest/download/SimpleDNSCrypt_", 782 | r".msi", 783 | ) 784 | ], 785 | ), 786 | "c1-1": Tool( 787 | "ADW Cleaner", 788 | "c1-1", 789 | 1, 790 | True, 791 | lambda: "", 792 | r"https://www.malwarebytes.com/adwcleaner", 793 | [ 794 | Dwn( 795 | "ADW Cleaner", 796 | "", 797 | "ADW-Cleaner.exe", 798 | r"https://adwcleaner.malwarebytes.com/adwcleaner?channel=release", 799 | ) 800 | ], 801 | ), 802 | "c2-1": Tool( 803 | "ATF Cleaner", 804 | "c2-1", 805 | 1, 806 | True, 807 | lambda: "", 808 | r"https://www.majorgeeks.com/files/details/atf_cleaner.html", 809 | [ 810 | Dwn( 811 | "ATF Cleaner", 812 | "", 813 | "ATF-Cleaner.exe", 814 | r"https://files1.majorgeeks.com/10afebdbffcd4742c81a3cb0f6ce4092156b4375/drives/ATF-Cleaner.exe", 815 | ) 816 | ], 817 | ), 818 | "c3-1": Tool( 819 | "Defraggler", 820 | "c3-1", 821 | 1, 822 | True, 823 | lambda: "", 824 | r"https://www.ccleaner.com/defraggler", 825 | [ 826 | Dwn( 827 | "Defraggler", 828 | "", 829 | "Defraggler-Setup.exe", 830 | r"https://download.ccleaner.com/dfsetup222.exe", 831 | ) 832 | ], 833 | ), 834 | "c4-1": Tool( 835 | "Malwarebytes", 836 | "c4-1", 837 | 1, 838 | True, 839 | lambda: "", 840 | r"https://www.malwarebytes.com/", 841 | [ 842 | Dwn( 843 | "Malwarebytes", 844 | "", 845 | "Malwarebytes.exe", 846 | r"https://www.malwarebytes.com/api/downloads/mb-windows?filename=MBSetup.exe", 847 | ) 848 | ], 849 | ), 850 | "c5-1": Tool( 851 | "Emsisoft EK", 852 | "c5-1", 853 | 1, 854 | True, 855 | lambda: "", 856 | r"https://www.emsisoft.com/en/emergency-kit/", 857 | [ 858 | Dwn( 859 | "Emsisoft Emergency Kit", 860 | "", 861 | "EmsisoftEmergencyKit.exe", 862 | r"https://dl.emsisoft.com/EmsisoftEmergencyKit.exe", 863 | ) 864 | ], 865 | ), 866 | "c6-1": Tool( 867 | "CleanmgrPlus", 868 | "c6-1", 869 | 1, 870 | True, 871 | lambda: "", 872 | r"https://github.com/builtbybel/CleanmgrPlus", 873 | [ 874 | Dwn( 875 | "CleanmgrPlus", 876 | "", 877 | "CleanmgrPlus.zip", 878 | r"https://github.com/builtbybel/CleanmgrPlus/releases/latest/download/cleanmgrplus.zip", 879 | ) 880 | ], 881 | ), 882 | "c7-1": Tool( 883 | "Glary Utilities", 884 | "c7-1", 885 | 1, 886 | True, 887 | lambda: "", 888 | r"https://www.glarysoft.com/", 889 | [ 890 | Dwn( 891 | "Glary Utilities", 892 | "", 893 | "GlaryUtilities.exe", 894 | r"https://download.glarysoft.com/gu5setup.exe", 895 | ) 896 | ], 897 | ), 898 | "c8-1": Tool( 899 | "ESET", 900 | "c8-1", 901 | 1, 902 | True, 903 | lambda: "", 904 | r"https://www.eset.com/int/home/free-trial/", 905 | [ 906 | Dwn( 907 | "ESET Home Security Premium", 908 | "", 909 | "ESETHomeSecurityPremium.exe", 910 | r"https://download.eset.com/com/eset/tools/installers/live_essp/latest/eset_smart_security_premium_live_installer.exe", 911 | ), 912 | Dwn( 913 | "ESET Home Security Essential", 914 | "", 915 | "ESETHomeSecurityEssential.exe", 916 | r"https://download.eset.com/com/eset/tools/installers/live_eis/latest/eset_internet_security_live_installer.exe", 917 | ), 918 | Dwn( 919 | "ESET Online Scanner", 920 | "", 921 | "ESETOnlineScanner.exe", 922 | r"https://download.eset.com/com/eset/tools/online_scanner/latest/esetonlinescanner.exe", 923 | ), 924 | ], 925 | ), 926 | "c9-1": Tool( 927 | "Kaspersky", 928 | "c9-1", 929 | 3, 930 | True, 931 | lambda: "", 932 | r"https://www.kaspersky.com/downloads/", 933 | [ 934 | Dwn("Kaspersky Plus", "", "", r"https://www.kaspersky.com/downloads/plus"), 935 | Dwn( 936 | "Kaspersky Standard", 937 | "", 938 | "", 939 | r"https://www.kaspersky.com/downloads/standard", 940 | ), 941 | Dwn( 942 | "Kaspersky Premium", 943 | "", 944 | "", 945 | r"https://www.kaspersky.com/downloads/premium", 946 | ), 947 | ], 948 | ), 949 | "l1-2": Tool( 950 | "Linux Mint", 951 | "l1-2", 952 | 1, 953 | True, 954 | lambda: "", 955 | r"https://linuxmint.com/", 956 | [ 957 | Dwn( 958 | "Linux Mint Cinnamon", 959 | "Cinnamon", 960 | "LinuxMint-Cinnamon.iso", 961 | r"https://mirror.rackspace.com/linuxmint/iso/stable/%MINTVERSION%/linuxmint-%MINTVERSION%-cinnamon-64bit.iso", 962 | ), 963 | Dwn( 964 | "Linux Mint MATE", 965 | "MATE", 966 | "LinuxMint-MATE.iso", 967 | r"https://mirror.rackspace.com/linuxmint/iso/stable/%MINTVERSION%/linuxmint-%MINTVERSION%-mate-64bit.iso", 968 | ), 969 | Dwn( 970 | "Linux Mint Xfce", 971 | "Xfce", 972 | "LinuxMint-Xfce.iso", 973 | r"https://mirror.rackspace.com/linuxmint/iso/stable/%MINTVERSION%/linuxmint-%MINTVERSION%-xfce-64bit.iso", 974 | ), 975 | ], 976 | ), 977 | "l2-2": Tool( 978 | "Pop!_OS", 979 | "l2-2", 980 | 1, 981 | True, 982 | lambda: "", 983 | r"https://pop.system76.com/", 984 | [ 985 | Dwn("Pop!_OS Nvidia", "Nvidia", "PopOS-Nvidia.iso", r"%POP%,nvidia"), 986 | Dwn("Pop!_OS RPI", "RPI4", "PopOS-RPI.img.xz", r"%POP%,raspi"), 987 | Dwn("Pop!_OS LTS", "LTS", "PopOS-LTS.iso", r"%POP%,intel"), 988 | ], 989 | ), 990 | "l3-2": Tool( 991 | "Ubuntu", 992 | "l3-2", 993 | 1, 994 | True, 995 | lambda: "", 996 | r"https://ubuntu.com/", 997 | [ 998 | Dwn( 999 | "Ubuntu", 1000 | "", 1001 | "Ubuntu.iso", 1002 | r"https://cdimage.ubuntu.com/ubuntu/releases/%UBUNTUVERSION%/release/ubuntu-%UBUNTUVERSION%-desktop-legacy-amd64.iso", 1003 | ), 1004 | Dwn( 1005 | "Kubuntu", 1006 | "", 1007 | "Kubuntu.iso", 1008 | r"https://cdimage.ubuntu.com/kubuntu/releases/%UBUNTUVERSION%/release/kubuntu-%UBUNTUVERSION%-desktop-amd64.iso", 1009 | ), 1010 | Dwn( 1011 | "Lubuntu", 1012 | "", 1013 | "Lubuntu.iso", 1014 | r"https://cdimage.ubuntu.com/xubuntu/releases/%UBUNTUVERSION%/release/xubuntu-%UBUNTUVERSION%-desktop-amd64.iso", 1015 | ), 1016 | ], 1017 | ), 1018 | "l4-2": Tool( 1019 | "Arch Linux", 1020 | "l4-2", 1021 | 1, 1022 | True, 1023 | lambda: "", 1024 | r"https://archlinux.org/", 1025 | [ 1026 | Dwn( 1027 | "ArchLinux.iso", 1028 | "Latest", 1029 | "ArchLinux.iso", 1030 | r"https://mirror.rackspace.com/archlinux/iso/latest/archlinux-x86_64.iso", 1031 | ) 1032 | ], 1033 | ), 1034 | "l5-2": Tool( 1035 | "Atrix Linux", 1036 | "l5-2", 1037 | 1, 1038 | True, 1039 | lambda: "", 1040 | r"https://artixlinux.org/", 1041 | [ 1042 | Dwn("Artix Plasma", "Plasma", "Artix-Plasma.iso", r"%ARTIX%,plasma"), 1043 | Dwn("Atrix Xfce", "Xfce", "Artix-Xfce.iso", r"%ARTIX%,xfce"), 1044 | Dwn( 1045 | "Artix Cinnamon", "Cinnamon", "Artix-Cinnamon.iso", r"%ARTIX%,cinnamon" 1046 | ), 1047 | ], 1048 | ), 1049 | "l6-2": Tool( 1050 | "Solus", 1051 | "l6-2", 1052 | 1, 1053 | True, 1054 | lambda: "", 1055 | r"https://getsol.us/", 1056 | [ 1057 | Dwn("Solus Budgie", "Budgie", "Solus-Budgie.iso", r"%SOLUS%,Budgie"), 1058 | Dwn("Solus Plasma", "Plasma", "Solus-Plasma.iso", r"%SOLUS%,Plasma"), 1059 | Dwn("Solus GNOME", "GNOME", "Solus-GNOME.iso", r"%SOLUS%,GNOME"), 1060 | ], 1061 | ), 1062 | "l7-2": Tool( 1063 | "Debian", 1064 | "l7-2", 1065 | 1, 1066 | True, 1067 | lambda: "", 1068 | r"https://www.debian.org/", 1069 | [Dwn("Debian NetInstall", "NetInst", "Debian-NetInst.iso", r"%DEBIAN%")], 1070 | ), 1071 | "l8-2": Tool( 1072 | "Garuda Linux", 1073 | "l8-2", 1074 | 1, 1075 | True, 1076 | lambda: "", 1077 | r"https://garudalinux.org/", 1078 | [ 1079 | Dwn( 1080 | "Garuda DR460NIZED Gaming", 1081 | "DR460NIZED", 1082 | "Garuda-DR460NIZED.iso", 1083 | r"https://iso.builds.garudalinux.org/iso/latest/garuda/dr460nized-gaming/latest.iso?r2=1", 1084 | ), 1085 | Dwn( 1086 | "Garuda GNOME", 1087 | "GNOME", 1088 | "Garuda-GNOME.iso", 1089 | r"https://iso.builds.garudalinux.org/iso/latest/garuda/gnome/latest.iso?r2=1", 1090 | ), 1091 | Dwn( 1092 | "Garuda Xfce", 1093 | "Xfce", 1094 | "Garuda-Xfce.iso", 1095 | r"https://iso.builds.garudalinux.org/iso/latest/garuda/xfce/latest.iso?r2=1", 1096 | ), 1097 | ], 1098 | ), 1099 | "l9-2": Tool( 1100 | "EndeavourOS", 1101 | "l9-2", 1102 | 1, 1103 | True, 1104 | lambda: "", 1105 | r"https://zorin.com/os/", 1106 | [ 1107 | Dwn( 1108 | "EndeavourOS", 1109 | "", 1110 | "EndeavourOS.iso", 1111 | r"https://mirror.moson.org/endeavouros/iso/%ENDEAVOUR%", 1112 | ) 1113 | ], 1114 | ), 1115 | "l10-2": Tool( 1116 | "CachyOS", 1117 | "l10-2", 1118 | 1, 1119 | True, 1120 | lambda: "", 1121 | r"https://cachyos.org/", 1122 | [ 1123 | Dwn( 1124 | "CachyOS Desktop", 1125 | "Desktop", 1126 | "CachyOS-Desktop.iso", 1127 | r"https://cdn77.cachyos.org/ISO/desktop/%CACHYVERSION%/cachyos-desktop-linux-%CACHYVERSION%.iso", 1128 | ), 1129 | Dwn( 1130 | "CachyOS Handheld", 1131 | "Handheld", 1132 | "CachyOS-Handheld.iso", 1133 | r"https://cdn77.cachyos.org/ISO/desktop/%CACHYVERSION%/cachyos-desktop-linux-%CACHYVERSION%.iso", 1134 | ), 1135 | ], 1136 | ), 1137 | "w1-2": Tool( 1138 | "Windows 11", 1139 | "w1-2", 1140 | 1, 1141 | True, 1142 | lambda: "", 1143 | r"Windows 11", 1144 | [ 1145 | Dwn( 1146 | "Windows 11 x64", 1147 | "", 1148 | "Windows11-x64.iso", 1149 | # TODO: port from https://msdl.gravesoft.dev/#3113 1150 | r"https://dl.bobpony.com/windows/11/en-us_windows_11_23h2_x64.iso", 1151 | ), 1152 | Dwn( 1153 | "Windows 11 LTSC", 1154 | "", 1155 | "Windows11-LTSC.iso", 1156 | r"https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_ltsc_2024_x64_dvd_f6b14814.iso", 1157 | ), 1158 | ], 1159 | ), 1160 | "w2-2": Tool( 1161 | "Windows 10", 1162 | "w2-2", 1163 | 1, 1164 | True, 1165 | lambda: "", 1166 | r"Windows 10", 1167 | [ 1168 | Dwn( 1169 | "Windows 10 x64", 1170 | "", 1171 | "Windows10-x64.iso", 1172 | r"https://drive.massgrave.dev/en-gb_windows_10_consumer_editions_version_22h2_updated_nov_2024_x64_dvd_3eeacab9.iso", 1173 | ), 1174 | Dwn( 1175 | "Windows 10 LTSC (recommended)", 1176 | "", 1177 | "Windows10-LTSC.iso", 1178 | r"https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_ltsc_2021_x64_dvd_257ad90f.iso", 1179 | ), 1180 | ], 1181 | ), 1182 | "w3-2": Tool( 1183 | "Windows 8.1", 1184 | "w4-2", 1185 | 1, 1186 | True, 1187 | lambda: "", 1188 | r"Windows 8.1", 1189 | [ 1190 | Dwn( 1191 | "Windows 8.1", 1192 | "", 1193 | "Windows8.1-x64.iso", 1194 | r"https://dl.bobpony.com/windows/8.x/8.1/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso", 1195 | ), 1196 | Dwn( 1197 | "Windows 8.1", 1198 | "", 1199 | "Windows8.1-x86.7z", 1200 | r"https://dl.bobpony.com/windows/8.x/8.1/en_windows_8.1_enterprise_with_update_x86_dvd_6050710.7z", 1201 | ), 1202 | ], 1203 | ), 1204 | "w4-2": Tool( 1205 | "Windows 8", 1206 | "w5-2", 1207 | 1, 1208 | True, 1209 | lambda: "", 1210 | r"Windows 8", 1211 | [ 1212 | Dwn( 1213 | "Windows 8 x64", 1214 | "", 1215 | "Windows8-x64.iso", 1216 | r"https://dl.bobpony.com/windows/8.x/8.0/en_windows_8_x64_dvd_915440.iso", 1217 | ), 1218 | Dwn( 1219 | "Windows 8 x86", 1220 | "", 1221 | "Windows8-x86.iso", 1222 | r"https://dl.bobpony.com/windows/8.x/8.0/en_windows_8_x86_dvd_915417.iso", 1223 | ), 1224 | ], 1225 | ), 1226 | "w5-2": Tool( 1227 | "Windows 7", 1228 | "w6-2", 1229 | 1, 1230 | True, 1231 | lambda: "", 1232 | r"Windows 7", 1233 | [ 1234 | Dwn( 1235 | "Windows 7 x64", 1236 | "", 1237 | "Windows7-x64.7z", 1238 | r"https://dl.bobpony.com/windows/7/updated/7601.24214.180801-1700.win7sp1_ldr_escrow_CLIENT_PROFESSIONAL_x64FRE_en-us.7z", 1239 | ), 1240 | Dwn( 1241 | "Windows 7 x86", 1242 | "", 1243 | "Windows7-x86.7z", 1244 | r"https://dl.bobpony.com/windows/7/updated/7601.24214.180801-1700.win7sp1_ldr_escrow_CLIENT_PROFESSIONAL_x86FRE_en-us.7z", 1245 | ), 1246 | ], 1247 | ), 1248 | "m1-2": Tool( 1249 | "AME Wizard", 1250 | "m1-2", 1251 | 1, 1252 | True, 1253 | lambda: "", 1254 | r"https://ameliorated.io/", 1255 | [ 1256 | Dwn( 1257 | "AME Wizard", 1258 | "", 1259 | "AMEWizard.zip", 1260 | r"https://download.ameliorated.io/AME%20Wizard%20Beta.zip", 1261 | ) 1262 | ], 1263 | ), 1264 | "m2-2": Tool( 1265 | "ReviOS", 1266 | "m2-2", 1267 | 1, 1268 | False, 1269 | lambda: str(latest("meetrevision/playbook")), 1270 | r"https://revi.cc/", 1271 | [ 1272 | Dwn( 1273 | "ReviOS Playbook", 1274 | "", 1275 | "ReviOS.apbx", 1276 | r"https://github.com/meetrevision/playbook/releases/download/", 1277 | r"/Revi-PB-", 1278 | r".apbx", 1279 | ) 1280 | ], 1281 | ), 1282 | "m3-2": Tool( 1283 | "AtlasOS", 1284 | "m3-2", 1285 | 1, 1286 | False, 1287 | lambda: str(latest("Atlas-OS/Atlas")), 1288 | r"https://github.com/Atlas-OS/Atlas", 1289 | [ 1290 | Dwn( 1291 | "AtlasOS Playbook", 1292 | "", 1293 | "AtlasPlaybook.zip", 1294 | r"https://github.com/Atlas-OS/Atlas/releases/latest/download/AtlasPlaybook_v", 1295 | r".apbx", 1296 | ) 1297 | ], 1298 | ), 1299 | "m4-2": Tool( 1300 | "AME Playbook", 1301 | "m4-2", 1302 | 1, 1303 | True, 1304 | lambda: "", 1305 | r"https://ameliorated.io/", 1306 | [ 1307 | Dwn( 1308 | "AME 10", 1309 | "", 1310 | "AME10.apbx", 1311 | r"https://download.ameliorated.io/AME%2010%20Beta.apbx", 1312 | ), 1313 | Dwn( 1314 | "AME 11", 1315 | "", 1316 | "AME11.apbx", 1317 | r"https://download.ameliorated.io/AME%2011%20Beta.apbx", 1318 | ), 1319 | ], 1320 | ), 1321 | "m5-2": Tool( 1322 | "Rectify11", 1323 | "m5-2", 1324 | 1, 1325 | True, 1326 | lambda: "", 1327 | r"https://github.com/Rectify11/Installer", 1328 | [ 1329 | Dwn( 1330 | "Rectify11 Installer", 1331 | "", 1332 | "Rectify11Installer.exe", 1333 | r"https://github.com/Rectify11/Installer/releases/latest/download/Rectify11Installer.exe", 1334 | ) 1335 | ], 1336 | ), 1337 | "m6-2": Tool( 1338 | "Ghost Spectre", 1339 | "m6-2", 1340 | 3, 1341 | True, 1342 | lambda: "", 1343 | r"https://ghostclouds.xyz/wp/w10-pro-aio-x64/", 1344 | [Dwn("Ghost Spectre", "", "GhostSpectre.WPE64", r"%GHOSTSPECTRE%")], 1345 | ), 1346 | "a1-2": Tool( 1347 | "Rufus", 1348 | "a1-2", 1349 | 1, 1350 | False, 1351 | lambda: str(latest("pbatard/rufus")), 1352 | r"https://github.com/pbatard/rufus", 1353 | [ 1354 | Dwn( 1355 | "Rufus", 1356 | "", 1357 | "Rufus.exe", 1358 | r"https://github.com/pbatard/rufus/releases/latest/download/rufus-", 1359 | r".exe", 1360 | ) 1361 | ], 1362 | ), 1363 | "a2-2": Tool( 1364 | "Balena Etcher", 1365 | "a2-2", 1366 | 1, 1367 | True, 1368 | lambda: "", 1369 | r"https://github.com/balena-io/etcher", 1370 | [ 1371 | Dwn( 1372 | "Balena Etcher", 1373 | "", 1374 | "Etcher-Portable.exe", 1375 | r"https://github.com/balena-io/etcher/releases/download/v1.18.11/balenaEtcher-Portable-1.18.11.exe", 1376 | ) 1377 | ], 1378 | ), 1379 | "a3-2": Tool( 1380 | "HeiDoc Iso Dwnlder", 1381 | "a3-2", 1382 | 1, 1383 | True, 1384 | lambda: "", 1385 | r"https://www.heidoc.net/joomla/technology-science/microsoft/67-microsoft-windows-and-office-iso-download-tool", 1386 | [ 1387 | Dwn( 1388 | "HeiDoc Iso Downloader", 1389 | "", 1390 | "HeiDoc-ISO-Downloader.exe", 1391 | r"https://www.heidoc.net/php/Windows-ISO-Downloader.exe", 1392 | ) 1393 | ], 1394 | ), 1395 | "a4-2": Tool( 1396 | "KeePassXC", 1397 | "a4-2", 1398 | 1, 1399 | False, 1400 | lambda: str(latest("keepassxreboot/keepassxc")), 1401 | r"https://github.com/keepassxreboot/keepassxc", 1402 | [ 1403 | Dwn( 1404 | "KeePassXC", 1405 | "", 1406 | "KeePassXC-Setup.msi", 1407 | r"https://github.com/keepassxreboot/keepassxc/releases/latest/download/KeePassXC-", 1408 | r"-Win64.msi", 1409 | ) 1410 | ], 1411 | ), 1412 | "a5-2": Tool( 1413 | "PowerToys", 1414 | "a5-2", 1415 | 1, 1416 | False, 1417 | lambda: (str(latest("microsoft/PowerToys"))).replace("v", ""), 1418 | r"https://github.com/microsoft/PowerToys", 1419 | [ 1420 | Dwn( 1421 | "PowerToys", 1422 | "", 1423 | "PowerToys-Setup.exe", 1424 | r"https://github.com/microsoft/PowerToys/releases/latest/download/PowerToysSetup-", 1425 | r"-x64.exe", 1426 | ) 1427 | ], 1428 | ), 1429 | "a6-2": Tool( 1430 | "Alacritty", 1431 | "a6-2", 1432 | 1, 1433 | False, 1434 | lambda: str(latest("alacritty/alacritty")), 1435 | r"https://github.com/alacritty/alacritty", 1436 | [ 1437 | Dwn( 1438 | "Alacritty", 1439 | "", 1440 | "Alacritty-Setup.exe", 1441 | r"https://github.com/alacritty/alacritty/releases/latest/download/Alacritty-", 1442 | r"-installer.msi", 1443 | ) 1444 | ], 1445 | ), 1446 | "a7-2": Tool( 1447 | "PowerShell 7", 1448 | "a7-2", 1449 | 1, 1450 | False, 1451 | lambda: (str(latest("PowerShell/PowerShell"))).replace("v", ""), 1452 | r"https://github.com/PowerShell/PowerShell", 1453 | [ 1454 | Dwn( 1455 | "PowerShell", 1456 | "", 1457 | "PowerShell-Setup.msi", 1458 | r"https://github.com/PowerShell/PowerShell/releases/latest/download/PowerShell-", 1459 | r"-win-x64.msi", 1460 | ) 1461 | ], 1462 | ), 1463 | "a8-2": Tool( 1464 | "Motrix", 1465 | "a8-2", 1466 | 1, 1467 | False, 1468 | lambda: (str(latest("agalwood/Motrix"))).replace("v", ""), 1469 | r"https://github.com/agalwood/Motrix", 1470 | [ 1471 | Dwn( 1472 | "Motrix", 1473 | "", 1474 | "Motrix-Setup.exe", 1475 | r"https://github.com/agalwood/Motrix/releases/latest/download/Motrix-Setup-", 1476 | r".exe", 1477 | ) 1478 | ], 1479 | ), 1480 | "a9-2": Tool( 1481 | "Files", 1482 | "a9-2", 1483 | 1, 1484 | True, 1485 | lambda: "", 1486 | r"https://files.community/", 1487 | [ 1488 | Dwn( 1489 | "Files", 1490 | "", 1491 | "Files.appinstaller", 1492 | r"https://files.community/appinstallers/Files.preview.appinstaller", 1493 | ) 1494 | ], 1495 | ), 1496 | "a10-2": Tool( 1497 | "VSCode", 1498 | "a10-2", 1499 | 1, 1500 | False, 1501 | lambda: str(latest("VSCodium/vscodium")), 1502 | r"https://vscodium.com/", 1503 | [ 1504 | Dwn( 1505 | "VSCodium", 1506 | "", 1507 | "VSCodium-Setup.msi", 1508 | r"https://github.com/VSCodium/vscodium/releases/download/", 1509 | r"/VSCodium-x64-", 1510 | r".msi", 1511 | ), 1512 | Dwn( 1513 | "VSCode", 1514 | "", 1515 | "VSCode-Setup.exe", 1516 | r"https://code.visualstudio.com/sha/download?build=stable&os=win32-x64-user", 1517 | ), 1518 | ], 1519 | ), 1520 | "l1-3": Tool( 1521 | "PrismLauncher", 1522 | "l1-3", 1523 | 1, 1524 | False, 1525 | lambda: str(latest("PrismLauncher/PrismLauncher")), 1526 | r"https://github.com/PrismLauncher/PrismLauncher", 1527 | [ 1528 | Dwn( 1529 | "Prism Launcher Setup", 1530 | "", 1531 | "PrismLauncher-Setup.exe", 1532 | r"https://github.com/PrismLauncher/PrismLauncher/releases/download/", 1533 | r"/PrismLauncher-Windows-MSVC-Setup-", 1534 | r".exe", 1535 | ) 1536 | ], 1537 | ), 1538 | "l2-3": Tool( 1539 | "Minecraft Launcher", 1540 | "l2-3", 1541 | 1, 1542 | True, 1543 | lambda: "", 1544 | r"https://www.minecraft.net", 1545 | [ 1546 | Dwn( 1547 | "Minecraft Launcher", 1548 | "", 1549 | "MinecraftInstaller.exe", 1550 | r"https://launcher.mojang.com/download/MinecraftInstaller.exe", 1551 | ) 1552 | ], 1553 | ), 1554 | "l3-3": Tool( 1555 | "ATLauncher", 1556 | "l3-3", 1557 | 1, 1558 | False, 1559 | lambda: str(latest("ATLauncher/ATLauncher")), 1560 | r"https://github.com/ATLauncher/ATLauncher", 1561 | [ 1562 | Dwn( 1563 | "ATLauncher", 1564 | "", 1565 | "ATLauncher-Setup.exe", 1566 | r"https://github.com/ATLauncher/ATLauncher/releases/latest/download/ATLauncher-", 1567 | r".exe", 1568 | ) 1569 | ], 1570 | ), 1571 | "l4-3": Tool( 1572 | "GDLauncher", 1573 | "l4-3", 1574 | 1, 1575 | False, 1576 | lambda: str(latest("gorilla-devs/GDLauncher")), 1577 | r"https://github.com/gorilla-devs/GDLauncher", 1578 | [ 1579 | Dwn( 1580 | "Portable", 1581 | "GDLauncher Portable", 1582 | "GDLauncher-Portable.zip", 1583 | r"https://github.com/gorilla-devs/GDLauncher/releases/download/v" 1584 | r"/GDLauncher-win-portable.zip", 1585 | ), 1586 | Dwn( 1587 | "Setup", 1588 | "GDLauncher Setup", 1589 | "GDLauncher-Setup.exe", 1590 | r"https://github.com/gorilla-devs/GDLauncher/releases/download/v" 1591 | r"/GDLauncher-win-setup.exe", 1592 | ), 1593 | ], 1594 | ), 1595 | "l5-3": Tool( 1596 | "Lunar Client", 1597 | "l5-3", 1598 | 1, 1599 | True, 1600 | lambda: "", 1601 | r"https://www.lunarclient.com/", 1602 | [ 1603 | Dwn( 1604 | "Lunar Client", 1605 | "", 1606 | "LunarClient-Setup.exe", 1607 | r"https://launcherupdates.lunarclientcdn.com/Lunar%20Client%20v3.2.3.exe", 1608 | ) 1609 | ], 1610 | ), 1611 | "l6-3": Tool( 1612 | "LabyMod", 1613 | "l6-3", 1614 | 1, 1615 | True, 1616 | lambda: "", 1617 | r"https://www.labymod.net/", 1618 | [ 1619 | Dwn( 1620 | "LabyMod", 1621 | "", 1622 | "LabyMod-Setup.exe", 1623 | r"https://releases.r2.labymod.net/launcher/win32/x64/LabyModLauncherSetup-latest.exe", 1624 | ) 1625 | ], 1626 | ), 1627 | "l7-3": Tool( 1628 | "Tecknix Client", 1629 | "l7-3", 1630 | 1, 1631 | True, 1632 | lambda: "", 1633 | r"https://tecknix.com/", 1634 | [ 1635 | Dwn( 1636 | "Tecknix Client", 1637 | "", 1638 | "Tecknix-Setup.exe", 1639 | r"https://tecknix.com/client/TecknixClient.exe", 1640 | ) 1641 | ], 1642 | ), 1643 | "l8-3": Tool( 1644 | "Salwyrr CLient", 1645 | "l8-3", 1646 | 1, 1647 | True, 1648 | lambda: "", 1649 | r"https://www.salwyrr.com/", 1650 | [ 1651 | Dwn( 1652 | "Salwyrr CLients", 1653 | "", 1654 | "Salwyrr-Setup.exe", 1655 | r"https://download.overwolf.com/setup/electron/ehdhabenpndnlfhfchfacfmnkhmnmigdjjlkeimc", 1656 | ) 1657 | ], 1658 | ), 1659 | "l9-3": Tool( 1660 | "Feather Launcher", 1661 | "l9-3", 1662 | 1, 1663 | True, 1664 | lambda: "", 1665 | r"https://feathermc.com/", 1666 | [ 1667 | Dwn( 1668 | "Feather Launcher", 1669 | "", 1670 | "FeatherLauncher-Setup.exe", 1671 | r"https://launcher.feathercdn.net/dl/Feather%20Launcher%20Setup%201.5.9.exe", 1672 | ) 1673 | ], 1674 | ), 1675 | "l10-3": Tool( 1676 | "Badlion Client", 1677 | "l10-3", 1678 | 1, 1679 | True, 1680 | lambda: "", 1681 | r"https://client.badlion.net/", 1682 | [ 1683 | Dwn( 1684 | "Badlion Client", 1685 | "", 1686 | "BadlionClient-Setup.exe", 1687 | r"https://www.badlion.net/download/client/latest/windows", 1688 | ) 1689 | ], 1690 | ), 1691 | "g1-3": Tool( 1692 | "Steam", 1693 | "g1-3", 1694 | 1, 1695 | True, 1696 | lambda: "", 1697 | r"https://store.steampowered.com/", 1698 | [ 1699 | Dwn( 1700 | "Steam", 1701 | "", 1702 | "Steam-Setup.exe", 1703 | r"https://cdn.cloudflare.steamstatic.com/client/installer/SteamSetup.exe", 1704 | ) 1705 | ], 1706 | ), 1707 | "g2-3": Tool( 1708 | "Rare", 1709 | "g2-3", 1710 | 1, 1711 | False, 1712 | lambda: str(latest("RareDevs/Rare")), 1713 | r"https://github.com/RareDevs/Rare", 1714 | [ 1715 | Dwn( 1716 | "Rare", 1717 | "", 1718 | "Rare-Setup.exe", 1719 | r"https://github.com/RareDevs/Rare/releases/download/", 1720 | r"/Rare-", 1721 | r".msi", 1722 | ) 1723 | ], 1724 | ), 1725 | "g3-3": Tool( 1726 | "Origin", 1727 | "g3-3", 1728 | 1, 1729 | True, 1730 | lambda: "", 1731 | r"https://www.ea.com/ea-app", 1732 | [ 1733 | Dwn( 1734 | "Origin", 1735 | "", 1736 | "Origin-Setup.exe", 1737 | r"https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases/EAappInstaller.exe", 1738 | ) 1739 | ], 1740 | ), 1741 | "g4-3": Tool( 1742 | "Epic Games", 1743 | "g4-3", 1744 | 1, 1745 | True, 1746 | lambda: "", 1747 | r"https://store.epicgames.com", 1748 | [ 1749 | Dwn( 1750 | "Epic Games", 1751 | "", 1752 | "Epic-Games-Setup.msi", 1753 | r"https://launcher-public-service-prod06.ol.epicgames.com/launcher/api/installer/download/EpicGamesLauncherInstaller.msi", 1754 | ) 1755 | ], 1756 | ), 1757 | "g5-3": Tool( 1758 | "GOG Galaxy", 1759 | "g5-3", 1760 | 1, 1761 | True, 1762 | lambda: "", 1763 | r"https://www.gog.com/galaxy", 1764 | [ 1765 | Dwn( 1766 | "GOG Galaxy", 1767 | "", 1768 | "GOG-Galaxy-Setup.exe", 1769 | r"https://webinstallers.gog-statics.com/download/GOG_Galaxy_2.0.exe", 1770 | ) 1771 | ], 1772 | ), 1773 | "g6-3": Tool( 1774 | "Paradox", 1775 | "g6-3", 1776 | 1, 1777 | True, 1778 | lambda: "", 1779 | r"https://www.paradoxinteractive.com/our-games/launcher", 1780 | [ 1781 | Dwn( 1782 | "Paradox", 1783 | "", 1784 | "Paradox-Setup.msi", 1785 | r"https://launcher.paradoxinteractive.com/v2/paradox-launcher-installer-windows", 1786 | ) 1787 | ], 1788 | ), 1789 | "g7-3": Tool( 1790 | "Bloxstrap", 1791 | "g7-3", 1792 | 1, 1793 | False, 1794 | lambda: str(latest("pizzaboxer/bloxstrap")), 1795 | r"https://github.com/pizzaboxer/bloxstrap", 1796 | [ 1797 | Dwn( 1798 | "Bloxstrap", 1799 | "", 1800 | "Bloxstrap-Setup.exe", 1801 | r"https://github.com/pizzaboxer/bloxstrap/releases/download/v", 1802 | r"/Bloxstrap-v", 1803 | r".exe", 1804 | ) 1805 | ], 1806 | ), 1807 | "r1-3": Tool( 1808 | "DirectX", 1809 | "r1-3", 1810 | 1, 1811 | True, 1812 | lambda: "", 1813 | r"https://www.microsoft.com/en-us/download/details.aspx?id=35", 1814 | [ 1815 | Dwn( 1816 | "DirectX", 1817 | "", 1818 | "DirectX.exe", 1819 | r"https://download.microsoft.com/download/1/7/1/1718CCC4-6315-4D8E-9543-8E28A4E18C4C/dxwebsetup.exe", 1820 | ) 1821 | ], 1822 | ), 1823 | "r2-3": Tool( 1824 | "VCRedists", 1825 | "r2-3", 1826 | 1, 1827 | True, 1828 | lambda: "", 1829 | r"https://github.com/abbodi1406/vcredist", 1830 | [ 1831 | Dwn( 1832 | "VisualCppRedistAIO", 1833 | "", 1834 | "VCRedists.exe", 1835 | r"https://github.com/abbodi1406/vcredist/releases/latest/download/VisualCppRedist_AIO_x86_x64.exe", 1836 | ) 1837 | ], 1838 | ), 1839 | "r3-3": Tool( 1840 | "XNA Framework", 1841 | "r3-3", 1842 | 1, 1843 | True, 1844 | lambda: "", 1845 | r"https://www.microsoft.com/en-us/download/details.aspx?id=20914", 1846 | [ 1847 | Dwn( 1848 | "XNA Framework", 1849 | "", 1850 | "xnafx.msi", 1851 | r"https://download.microsoft.com/download/A/C/2/AC2C903B-E6E8-42C2-9FD7-BEBAC362A930/xnafx40_redist.msi", 1852 | ) 1853 | ], 1854 | ), 1855 | "r4-3": Tool( 1856 | ".NET Framework", 1857 | "r4-3", 1858 | 1, 1859 | True, 1860 | lambda: "", 1861 | r"https://dotnet.microsoft.com/en-us/download/dotnet/8.0", 1862 | [ 1863 | Dwn( 1864 | "ASP.NET Core 8.0 Runtime", 1865 | "", 1866 | "ASPDotNet-Installer.exe", 1867 | r"https://download.visualstudio.microsoft.com/download/pr/4b805b84-302c-42e3-b57e-665d0bb7b1f0/3a0965017f98303c7fe1ab1291728e07/aspnetcore-runtime-8.0.1-win-x64.exe", 1868 | ), 1869 | Dwn( 1870 | ".NET Desktop 8.0 Runtime", 1871 | "", 1872 | "DotNetDesktop-Installer.exe", 1873 | r"https://download.visualstudio.microsoft.com/download/pr/f18288f6-1732-415b-b577-7fb46510479a/a98239f751a7aed31bc4aa12f348a9bf/windowsdesktop-runtime-8.0.1-win-x64.exe", 1874 | ), 1875 | Dwn( 1876 | ".NET Runtime 8.0 Runtime", 1877 | "", 1878 | "DotNetRuntime-Installer.exe", 1879 | r"https://download.visualstudio.microsoft.com/download/pr/cede7e69-dbd4-4908-9bfb-12fa4660e2b9/d9ed17179d0275abee5afd29d5460b48/dotnet-runtime-8.0.1-win-x64.exe", 1880 | ), 1881 | ], 1882 | ), 1883 | "r5-3": Tool( 1884 | "Node.js", 1885 | "r5-3", 1886 | 1, 1887 | True, 1888 | lambda: "", 1889 | r"https://nodejs.org/", 1890 | [ 1891 | Dwn( 1892 | "Node.js 20.12.0 LTS", 1893 | "", 1894 | "Node-Installer.msi", 1895 | r"https://nodejs.org/dist/v20.12.0/node-v20.12.0-x64.msi", 1896 | ) 1897 | ], 1898 | ), 1899 | "r6-3": Tool( 1900 | "Python", 1901 | "r6-3", 1902 | 1, 1903 | True, 1904 | lambda: "", 1905 | r"https://python.org/", 1906 | [ 1907 | Dwn( 1908 | "Python 3.12", 1909 | "", 1910 | "Python312-Installer.msi", 1911 | r"https://www.python.org/ftp/python/3.12.2/python-3.12.2-amd64.exe", 1912 | ), 1913 | Dwn( 1914 | "Python 3.11", 1915 | "", 1916 | "Python311-Installer.msi", 1917 | r"https://www.python.org/ftp/python/3.11.8/python-3.11.8-amd64.exe", 1918 | ), 1919 | Dwn( 1920 | "Python 3.10", 1921 | "", 1922 | "Python310-Installer.msi", 1923 | r"https://www.python.org/ftp/python/3.10.11/python-3.10.11-amd64.exe", 1924 | ), 1925 | ], 1926 | ), 1927 | "a1-3": Tool( 1928 | "Achievement Watcher", 1929 | "a1-3", 1930 | 1, 1931 | True, 1932 | lambda: "", 1933 | r"https://github.com/xan105/Achievement-Watcher", 1934 | [ 1935 | Dwn( 1936 | "Achievement Watcher", 1937 | "", 1938 | "Achievement-Watcher.exe", 1939 | r"https://github.com/xan105/Achievement-Watcher/releases/latest/download/Achievement.Watcher.Setup.exe", 1940 | ) 1941 | ], 1942 | ), 1943 | "a2-3": Tool( 1944 | "Spotify", 1945 | "a2-3", 1946 | 1, 1947 | True, 1948 | lambda: "", 1949 | r"https://open.spotify.com/", 1950 | [ 1951 | Dwn( 1952 | "Spotify", 1953 | "", 1954 | "Spotify.exe", 1955 | r"https://download.scdn.co/SpotifySetup.exe", 1956 | ) 1957 | ], 1958 | ), 1959 | "a3-3": Tool( 1960 | "Spicefy", 1961 | "a3-3", 1962 | 2, 1963 | True, 1964 | lambda: "", 1965 | r"https://spicetify.app/", 1966 | [ 1967 | Dwn( 1968 | "Spicefy", 1969 | "", 1970 | "", 1971 | r"iwr -useb https://raw.githubusercontent.com/spicetify/spicetify-cli/master/install.ps1 | iex && iwr -useb https://raw.githubusercontent.com/spicetify/spicetify-marketplace/main/resources/install.ps1 | iex", 1972 | ) 1973 | ], 1974 | ), 1975 | "a4-3": Tool( 1976 | "Discord", 1977 | "a4-3", 1978 | 1, 1979 | True, 1980 | lambda: "", 1981 | r"https://discord.com/", 1982 | [ 1983 | Dwn( 1984 | "Discord", 1985 | "", 1986 | "Discord-Setup.exe", 1987 | r"https://discord.com/api/downloads/distributions/app/installers/latest?channel=stable&platform=win&arch=x86", 1988 | ) 1989 | ], 1990 | ), 1991 | "a5-3": Tool( 1992 | "Vesktop", 1993 | "a5-3", 1994 | 1, 1995 | False, 1996 | lambda: "", 1997 | r"https://github.com/Vencord/Vesktop/", 1998 | [ 1999 | Dwn( 2000 | "Vesktop", 2001 | "", 2002 | "Vesktop-Setup.exe", 2003 | r"https://github.com/Vencord/Vesktop/releases/download/v", 2004 | r"/Vesktop-Setup-", 2005 | r".exe", 2006 | ) 2007 | ], 2008 | ), 2009 | "a6-3": Tool( 2010 | "ArmCord", 2011 | "a6-3", 2012 | 1, 2013 | False, 2014 | lambda: str(latest("ArmCord/ArmCord")), 2015 | r"https://github.com/ArmCord/ArmCord/", 2016 | [ 2017 | Dwn( 2018 | "ArmCord", 2019 | "", 2020 | "ArmCord-Setup.exe", 2021 | r"https://github.com/ArmCord/ArmCord/releases/download/v", 2022 | r"/ArmCord.Setup.", 2023 | r".exe", 2024 | ) 2025 | ], 2026 | ), 2027 | "a7-3": Tool( 2028 | "Vencord", 2029 | "a7-3", 2030 | 1, 2031 | True, 2032 | lambda: "", 2033 | r"https://github.com/Vencord/Installer", 2034 | [ 2035 | Dwn( 2036 | "Vencord", 2037 | "", 2038 | "Vencord.exe", 2039 | r"https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe", 2040 | ) 2041 | ], 2042 | ), 2043 | "a8-3": Tool( 2044 | "BetterDiscord", 2045 | "a8-3", 2046 | 1, 2047 | True, 2048 | lambda: "", 2049 | r"https://github.com/BetterDiscord", 2050 | [ 2051 | Dwn( 2052 | "BetterDiscord", 2053 | "", 2054 | "BetterDiscord-Setup.exe", 2055 | r"https://github.com/BetterDiscord/Installer/releases/latest/download/BetterDiscord-Windows.exe", 2056 | ) 2057 | ], 2058 | ), 2059 | "a9-3": Tool( 2060 | "Replugged", 2061 | "a9-3", 2062 | 1, 2063 | True, 2064 | lambda: "", 2065 | r"https://github.com/replugged-org", 2066 | [ 2067 | Dwn( 2068 | "Replugged", 2069 | "", 2070 | "Replugged-Installer.exe", 2071 | r"https://github.com/replugged-org/tauri-installer/releases/latest/download/replugged-installer-windows.exe", 2072 | ) 2073 | ], 2074 | ), 2075 | } 2076 | --------------------------------------------------------------------------------