├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── config.yml │ ├── logo-requests.yaml │ ├── other-issues.md │ └── readme-additions.yaml ├── .vscode └── settings.json ├── Bun ├── BunLogo.png ├── BunLogoOld.png ├── BunLogoShadowed.png └── BunLogoShadowedOld.png ├── Docker ├── DockerLogo.png └── DockerLogoShadowed.png ├── ElysiaJS ├── ElysiaJSLogo.png └── ElysiaJSLogoShadowed.png ├── GameChanger ├── GameChangerLogo.png └── GameChangerLogoShadowed.png ├── GodotEngine ├── GodotLogo.png └── GodotLogoShadow.png ├── ImHex ├── ImHexLogoSVGBG.png ├── ImHexLogoSVGBG.svg ├── ImHexLogoSVGBGShadows.png ├── ImHexLogoSVGBGShadows.svg ├── ImHexLogoSVGFilled.png ├── ImHexLogoSVGFilled.svg └── README.md ├── IntelliJIDEA ├── IntellijLogo.png └── intelliJShadow.png ├── Kubernetes ├── kubernetesLogo.png └── kubernetesLogoShadow.png ├── LICENSE.md ├── Mirin Template for NotITG ├── MirinTemplateLogoFilled.png ├── MirinTemplateLogoFilled.svg ├── MirinTemplateLogoFlattened.png ├── MirinTemplateLogoFlattened.svg ├── MirinTemplateLogoShadowed.png ├── MirinTemplateLogoShadowed.svg └── READMe.md ├── Neovim ├── NeovimLogo.png └── NeovimShadowed.png ├── PaperMC ├── PaperMCLogo.png └── PaperMCLogoShadowed.png ├── READMe.md ├── ReplaceGuide ├── InteliJIDEA │ ├── InteliJIDEA-en.md │ └── InteliJIDEA-zh.md └── VSCode │ ├── README.md │ ├── preview.png │ └── style.css ├── VSCode ├── VSCode-Thick.png └── VSCode.png └── osu ├── osuLogo.png ├── osuLogoOld.png ├── osuLogoShadowed.png └── osuLogoShadowedOld.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: aikoyori 2 | github: Aikoyori -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/logo-requests.yaml: -------------------------------------------------------------------------------- 1 | name: Logo Requests 2 | description: For requesting logos 3 | title: "[LOGO REQUEST] INSERT LOGO NAME HERE" 4 | labels: ["Logo Request"] 5 | assignees: Aikoyori 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | # Thanks for your interest! 11 | ## Please READ before submitting or YOUR ISSUE WILL BE CLOSED. 12 | 13 | Please provide the following information and answer the questions correctly: 14 | - type : input 15 | id: product-name 16 | attributes: 17 | label: Product Name 18 | description: The product you want the logo to be made 19 | placeholder: Acme Explosive Eggs 20 | validations: 21 | required: true 22 | - type : input 23 | id: product-link 24 | attributes: 25 | label: Product Link 26 | description: The link to the product 27 | placeholder: https://example.com 28 | validations: 29 | required: true 30 | - type : textarea 31 | id: additional-info 32 | attributes: 33 | label: Other information 34 | description: Describe the product and the logo you want 35 | placeholder: The logo should be made with with Acme color scheme. 36 | validations: 37 | required: false 38 | - type: checkboxes 39 | id: verification1 40 | attributes: 41 | label: Select the following 42 | description: Please select **ALL** of the following that sounds positive. 43 | options: 44 | - label: "Someone else has not requested this and I have not checked that that is the case because I am too lazy and I just want to spam these request to keep the guy busy." 45 | - label: "I am genuinely so tired of reading please give me a break I literally thought this would be a no-brainer process but suddenly I am doing an eight-choice quiz about my life." 46 | - label: "I have read and actually let out my inner voice won and then I submitted the issue anyway because I think it's so funny seeing people suffer from my actions." 47 | - label: "Imagine if a fly landed on your face, you would actually try to get it away, right? That's literally how you are doing the deed and I appreciate that you will do this." 48 | - label: "Stop yapping about everything I just want to patiently wait for my logo to be eventually done thought what is going to make me mad is that more people don't understand this." 49 | - label: "I love the author of this repository so much I could practically harass someone for it and I will do it again on any repository that makes it hard for me." 50 | - label: "I would really like to know how you are doing this all with just some time left on your hand. This shit genuinely sucks and you deserves better than getting dupes." 51 | - label: "Please go rid yourself of other tasks and pay attention to your real tasks much less do this because you have a life to live but this is cool!" 52 | - label: "I hate this thing so much I do not want to see it ever again but could you please do logos for me I will literally cry myself to sleep about it." 53 | - label: "Stop slacking off and get to work you lazy piece of worthy person please do not take your time on this project and focus on your real work." 54 | - type: checkboxes 55 | id: agreement 56 | attributes: 57 | label: The following is required to submit this issue 58 | description: By submitting this issue, you agree that these logos will be made available under the project's license and that you have checked if the logo is already available or already requested. 59 | options: 60 | - label: I agree that the logo will be made available under the project's license 61 | required: true 62 | - label: Select this to have your issue immediately closed (1) 63 | required: false 64 | - label: Select this no have your issue immediately closed (2) 65 | required: false 66 | - label: Select this to have your issue immediately closed (3) 67 | required: false 68 | - label: Select this no have your issue immediately closed (4) 69 | required: false 70 | - label: Select this no have your issue immediately closed (5) 71 | required: false 72 | - label: I have checked that I am not making a duplicate request (1) 73 | required: false 74 | - label: I have checked that I am not making a duplicate request (2) 75 | required: false 76 | - label: I have checked that I am not making a duplicate request (3) 77 | required: false 78 | - label: I have checked that I am yes making a duplicate request (4) 79 | required: false 80 | - label: I have checked that I am not making a duplicate request (5) 81 | required: false 82 | - label: I genuinely did not give a single damn if this gets rejected because I did not read any single thing and just blindly click every checkbox. 83 | required: false 84 | - label: If this turns out to be a duplicate, I agree that I will be burned at stake and publicly shamed until the project maintainer deems enough 85 | required: true 86 | - label: If this turns out to be a duplicate, I agree that I will have my access from the repository revoked. 87 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issues.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other Issues 3 | about: Something else that aren't listed here. 4 | title: "[OTHER] INSERT ISSUE HERE" 5 | labels: Other Issues 6 | assignees: Aikoyori 7 | 8 | --- 9 | 10 | ## Describe your issues here 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/readme-additions.yaml: -------------------------------------------------------------------------------- 1 | name: README additions 2 | description: Additions to READMe.md 3 | title: "[README] INSERT REQUEST HERE PLEASE" 4 | labels: ["README additions"] 5 | assignees: Aikoyori 6 | 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | # Thanks for your interest! 12 | Please provide the following information: 13 | - type : input 14 | id: product-name 15 | attributes: 16 | label: Your Repo Link 17 | description: The product you want the logo to be made 18 | placeholder: Acme Logos 19 | validations: 20 | required: true 21 | - type : textarea 22 | id: additional-info 23 | attributes: 24 | label: Other information 25 | description: Describe the product and the logo you want 26 | placeholder: The logos of Acme as additions. 27 | validations: 28 | required: true 29 | - type: checkboxes 30 | id: agreement 31 | attributes: 32 | label: The following is required to submit this issue 33 | description: By submitting this issue, you have checked if the logo is already available or already requested. 34 | options: 35 | - label: I have checked that I am not making a duplicate request 36 | required: true 37 | 38 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "yaml.schemas": { 3 | "https://json.schemastore.org/github-issue-config.json": "file:///c%3A/Users/Aikoyori/Desktop/Projects/TechyVTubers/.github/ISSUE_TEMPLATE/config.yml" 4 | } 5 | } -------------------------------------------------------------------------------- /Bun/BunLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Bun/BunLogo.png -------------------------------------------------------------------------------- /Bun/BunLogoOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Bun/BunLogoOld.png -------------------------------------------------------------------------------- /Bun/BunLogoShadowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Bun/BunLogoShadowed.png -------------------------------------------------------------------------------- /Bun/BunLogoShadowedOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Bun/BunLogoShadowedOld.png -------------------------------------------------------------------------------- /Docker/DockerLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Docker/DockerLogo.png -------------------------------------------------------------------------------- /Docker/DockerLogoShadowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Docker/DockerLogoShadowed.png -------------------------------------------------------------------------------- /ElysiaJS/ElysiaJSLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/ElysiaJS/ElysiaJSLogo.png -------------------------------------------------------------------------------- /ElysiaJS/ElysiaJSLogoShadowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/ElysiaJS/ElysiaJSLogoShadowed.png -------------------------------------------------------------------------------- /GameChanger/GameChangerLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/GameChanger/GameChangerLogo.png -------------------------------------------------------------------------------- /GameChanger/GameChangerLogoShadowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/GameChanger/GameChangerLogoShadowed.png -------------------------------------------------------------------------------- /GodotEngine/GodotLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/GodotEngine/GodotLogo.png -------------------------------------------------------------------------------- /GodotEngine/GodotLogoShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/GodotEngine/GodotLogoShadow.png -------------------------------------------------------------------------------- /ImHex/ImHexLogoSVGBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/ImHex/ImHexLogoSVGBG.png -------------------------------------------------------------------------------- /ImHex/ImHexLogoSVGBGShadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/ImHex/ImHexLogoSVGBGShadows.png -------------------------------------------------------------------------------- /ImHex/ImHexLogoSVGFilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/ImHex/ImHexLogoSVGFilled.png -------------------------------------------------------------------------------- /ImHex/README.md: -------------------------------------------------------------------------------- 1 | # ImHex 2 | These logos are commissioned by the author of ImHex, [WerWolv](https://github.com/WerWolv). -------------------------------------------------------------------------------- /IntelliJIDEA/IntellijLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/IntelliJIDEA/IntellijLogo.png -------------------------------------------------------------------------------- /IntelliJIDEA/intelliJShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/IntelliJIDEA/intelliJShadow.png -------------------------------------------------------------------------------- /Kubernetes/kubernetesLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Kubernetes/kubernetesLogo.png -------------------------------------------------------------------------------- /Kubernetes/kubernetesLogoShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Kubernetes/kubernetesLogoShadow.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Attribution-NonCommercial-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International 58 | Public License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-NonCommercial-ShareAlike 4.0 International Public License 63 | ("Public License"). To the extent this Public License may be 64 | interpreted as a contract, You are granted the Licensed Rights in 65 | consideration of Your acceptance of these terms and conditions, and the 66 | Licensor grants You such rights in consideration of benefits the 67 | Licensor receives from making the Licensed Material available under 68 | these terms and conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-NC-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution, NonCommercial, and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. NonCommercial means not primarily intended for or directed towards 126 | commercial advantage or monetary compensation. For purposes of 127 | this Public License, the exchange of the Licensed Material for 128 | other material subject to Copyright and Similar Rights by digital 129 | file-sharing or similar means is NonCommercial provided there is 130 | no payment of monetary compensation in connection with the 131 | exchange. 132 | 133 | l. Share means to provide material to the public by any means or 134 | process that requires permission under the Licensed Rights, such 135 | as reproduction, public display, public performance, distribution, 136 | dissemination, communication, or importation, and to make material 137 | available to the public including in ways that members of the 138 | public may access the material from a place and at a time 139 | individually chosen by them. 140 | 141 | m. Sui Generis Database Rights means rights other than copyright 142 | resulting from Directive 96/9/EC of the European Parliament and of 143 | the Council of 11 March 1996 on the legal protection of databases, 144 | as amended and/or succeeded, as well as other essentially 145 | equivalent rights anywhere in the world. 146 | 147 | n. You means the individual or entity exercising the Licensed Rights 148 | under this Public License. Your has a corresponding meaning. 149 | 150 | 151 | Section 2 -- Scope. 152 | 153 | a. License grant. 154 | 155 | 1. Subject to the terms and conditions of this Public License, 156 | the Licensor hereby grants You a worldwide, royalty-free, 157 | non-sublicensable, non-exclusive, irrevocable license to 158 | exercise the Licensed Rights in the Licensed Material to: 159 | 160 | a. reproduce and Share the Licensed Material, in whole or 161 | in part, for NonCommercial purposes only; and 162 | 163 | b. produce, reproduce, and Share Adapted Material for 164 | NonCommercial purposes only. 165 | 166 | 2. Exceptions and Limitations. For the avoidance of doubt, where 167 | Exceptions and Limitations apply to Your use, this Public 168 | License does not apply, and You do not need to comply with 169 | its terms and conditions. 170 | 171 | 3. Term. The term of this Public License is specified in Section 172 | 6(a). 173 | 174 | 4. Media and formats; technical modifications allowed. The 175 | Licensor authorizes You to exercise the Licensed Rights in 176 | all media and formats whether now known or hereafter created, 177 | and to make technical modifications necessary to do so. The 178 | Licensor waives and/or agrees not to assert any right or 179 | authority to forbid You from making technical modifications 180 | necessary to exercise the Licensed Rights, including 181 | technical modifications necessary to circumvent Effective 182 | Technological Measures. For purposes of this Public License, 183 | simply making modifications authorized by this Section 2(a) 184 | (4) never produces Adapted Material. 185 | 186 | 5. Downstream recipients. 187 | 188 | a. Offer from the Licensor -- Licensed Material. Every 189 | recipient of the Licensed Material automatically 190 | receives an offer from the Licensor to exercise the 191 | Licensed Rights under the terms and conditions of this 192 | Public License. 193 | 194 | b. Additional offer from the Licensor -- Adapted Material. 195 | Every recipient of Adapted Material from You 196 | automatically receives an offer from the Licensor to 197 | exercise the Licensed Rights in the Adapted Material 198 | under the conditions of the Adapter's License You apply. 199 | 200 | c. No downstream restrictions. You may not offer or impose 201 | any additional or different terms or conditions on, or 202 | apply any Effective Technological Measures to, the 203 | Licensed Material if doing so restricts exercise of the 204 | Licensed Rights by any recipient of the Licensed 205 | Material. 206 | 207 | 6. No endorsement. Nothing in this Public License constitutes or 208 | may be construed as permission to assert or imply that You 209 | are, or that Your use of the Licensed Material is, connected 210 | with, or sponsored, endorsed, or granted official status by, 211 | the Licensor or others designated to receive attribution as 212 | provided in Section 3(a)(1)(A)(i). 213 | 214 | b. Other rights. 215 | 216 | 1. Moral rights, such as the right of integrity, are not 217 | licensed under this Public License, nor are publicity, 218 | privacy, and/or other similar personality rights; however, to 219 | the extent possible, the Licensor waives and/or agrees not to 220 | assert any such rights held by the Licensor to the limited 221 | extent necessary to allow You to exercise the Licensed 222 | Rights, but not otherwise. 223 | 224 | 2. Patent and trademark rights are not licensed under this 225 | Public License. 226 | 227 | 3. To the extent possible, the Licensor waives any right to 228 | collect royalties from You for the exercise of the Licensed 229 | Rights, whether directly or through a collecting society 230 | under any voluntary or waivable statutory or compulsory 231 | licensing scheme. In all other cases the Licensor expressly 232 | reserves any right to collect such royalties, including when 233 | the Licensed Material is used other than for NonCommercial 234 | purposes. 235 | 236 | 237 | Section 3 -- License Conditions. 238 | 239 | Your exercise of the Licensed Rights is expressly made subject to the 240 | following conditions. 241 | 242 | a. Attribution. 243 | 244 | 1. If You Share the Licensed Material (including in modified 245 | form), You must: 246 | 247 | a. retain the following if it is supplied by the Licensor 248 | with the Licensed Material: 249 | 250 | i. identification of the creator(s) of the Licensed 251 | Material and any others designated to receive 252 | attribution, in any reasonable manner requested by 253 | the Licensor (including by pseudonym if 254 | designated); 255 | 256 | ii. a copyright notice; 257 | 258 | iii. a notice that refers to this Public License; 259 | 260 | iv. a notice that refers to the disclaimer of 261 | warranties; 262 | 263 | v. a URI or hyperlink to the Licensed Material to the 264 | extent reasonably practicable; 265 | 266 | b. indicate if You modified the Licensed Material and 267 | retain an indication of any previous modifications; and 268 | 269 | c. indicate the Licensed Material is licensed under this 270 | Public License, and include the text of, or the URI or 271 | hyperlink to, this Public License. 272 | 273 | 2. You may satisfy the conditions in Section 3(a)(1) in any 274 | reasonable manner based on the medium, means, and context in 275 | which You Share the Licensed Material. For example, it may be 276 | reasonable to satisfy the conditions by providing a URI or 277 | hyperlink to a resource that includes the required 278 | information. 279 | 3. If requested by the Licensor, You must remove any of the 280 | information required by Section 3(a)(1)(A) to the extent 281 | reasonably practicable. 282 | 283 | b. ShareAlike. 284 | 285 | In addition to the conditions in Section 3(a), if You Share 286 | Adapted Material You produce, the following conditions also apply. 287 | 288 | 1. The Adapter's License You apply must be a Creative Commons 289 | license with the same License Elements, this version or 290 | later, or a BY-NC-SA Compatible License. 291 | 292 | 2. You must include the text of, or the URI or hyperlink to, the 293 | Adapter's License You apply. You may satisfy this condition 294 | in any reasonable manner based on the medium, means, and 295 | context in which You Share Adapted Material. 296 | 297 | 3. You may not offer or impose any additional or different terms 298 | or conditions on, or apply any Effective Technological 299 | Measures to, Adapted Material that restrict exercise of the 300 | rights granted under the Adapter's License You apply. 301 | 302 | 303 | Section 4 -- Sui Generis Database Rights. 304 | 305 | Where the Licensed Rights include Sui Generis Database Rights that 306 | apply to Your use of the Licensed Material: 307 | 308 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 309 | to extract, reuse, reproduce, and Share all or a substantial 310 | portion of the contents of the database for NonCommercial purposes 311 | only; 312 | 313 | b. if You include all or a substantial portion of the database 314 | contents in a database in which You have Sui Generis Database 315 | Rights, then the database in which You have Sui Generis Database 316 | Rights (but not its individual contents) is Adapted Material, 317 | including for purposes of Section 3(b); and 318 | 319 | c. You must comply with the conditions in Section 3(a) if You Share 320 | all or a substantial portion of the contents of the database. 321 | 322 | For the avoidance of doubt, this Section 4 supplements and does not 323 | replace Your obligations under this Public License where the Licensed 324 | Rights include other Copyright and Similar Rights. 325 | 326 | 327 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 328 | 329 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 330 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 331 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 332 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 333 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 334 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 335 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 336 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 337 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 338 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 339 | 340 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 341 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 342 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 343 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 344 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 345 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 346 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 347 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 348 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 349 | 350 | c. The disclaimer of warranties and limitation of liability provided 351 | above shall be interpreted in a manner that, to the extent 352 | possible, most closely approximates an absolute disclaimer and 353 | waiver of all liability. 354 | 355 | 356 | Section 6 -- Term and Termination. 357 | 358 | a. This Public License applies for the term of the Copyright and 359 | Similar Rights licensed here. However, if You fail to comply with 360 | this Public License, then Your rights under this Public License 361 | terminate automatically. 362 | 363 | b. Where Your right to use the Licensed Material has terminated under 364 | Section 6(a), it reinstates: 365 | 366 | 1. automatically as of the date the violation is cured, provided 367 | it is cured within 30 days of Your discovery of the 368 | violation; or 369 | 370 | 2. upon express reinstatement by the Licensor. 371 | 372 | For the avoidance of doubt, this Section 6(b) does not affect any 373 | right the Licensor may have to seek remedies for Your violations 374 | of this Public License. 375 | 376 | c. For the avoidance of doubt, the Licensor may also offer the 377 | Licensed Material under separate terms or conditions or stop 378 | distributing the Licensed Material at any time; however, doing so 379 | will not terminate this Public License. 380 | 381 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 382 | License. 383 | 384 | 385 | Section 7 -- Other Terms and Conditions. 386 | 387 | a. The Licensor shall not be bound by any additional or different 388 | terms or conditions communicated by You unless expressly agreed. 389 | 390 | b. Any arrangements, understandings, or agreements regarding the 391 | Licensed Material not stated herein are separate from and 392 | independent of the terms and conditions of this Public License. 393 | 394 | 395 | Section 8 -- Interpretation. 396 | 397 | a. For the avoidance of doubt, this Public License does not, and 398 | shall not be interpreted to, reduce, limit, restrict, or impose 399 | conditions on any use of the Licensed Material that could lawfully 400 | be made without permission under this Public License. 401 | 402 | b. To the extent possible, if any provision of this Public License is 403 | deemed unenforceable, it shall be automatically reformed to the 404 | minimum extent necessary to make it enforceable. If the provision 405 | cannot be reformed, it shall be severed from this Public License 406 | without affecting the enforceability of the remaining terms and 407 | conditions. 408 | 409 | c. No term or condition of this Public License will be waived and no 410 | failure to comply consented to unless expressly agreed to by the 411 | Licensor. 412 | 413 | d. Nothing in this Public License constitutes or may be interpreted 414 | as a limitation upon, or waiver of, any privileges and immunities 415 | that apply to the Licensor or You, including from the legal 416 | processes of any jurisdiction or authority. 417 | 418 | ======================================================================= 419 | 420 | Creative Commons is not a party to its public 421 | licenses. Notwithstanding, Creative Commons may elect to apply one of 422 | its public licenses to material it publishes and in those instances 423 | will be considered the “Licensor.” The text of the Creative Commons 424 | public licenses is dedicated to the public domain under the CC0 Public 425 | Domain Dedication. Except for the limited purpose of indicating that 426 | material is shared under a Creative Commons public license or as 427 | otherwise permitted by the Creative Commons policies published at 428 | creativecommons.org/policies, Creative Commons does not authorize the 429 | use of the trademark "Creative Commons" or any other trademark or logo 430 | of Creative Commons without its prior written consent including, 431 | without limitation, in connection with any unauthorized modifications 432 | to any of its public licenses or any other arrangements, 433 | understandings, or agreements concerning use of licensed material. For 434 | the avoidance of doubt, this paragraph does not form part of the 435 | public licenses. 436 | 437 | Creative Commons may be contacted at creativecommons.org. -------------------------------------------------------------------------------- /Mirin Template for NotITG/MirinTemplateLogoFilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Mirin Template for NotITG/MirinTemplateLogoFilled.png -------------------------------------------------------------------------------- /Mirin Template for NotITG/MirinTemplateLogoFilled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | -------------------------------------------------------------------------------- /Mirin Template for NotITG/MirinTemplateLogoFlattened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Mirin Template for NotITG/MirinTemplateLogoFlattened.png -------------------------------------------------------------------------------- /Mirin Template for NotITG/MirinTemplateLogoFlattened.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | -------------------------------------------------------------------------------- /Mirin Template for NotITG/MirinTemplateLogoShadowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Mirin Template for NotITG/MirinTemplateLogoShadowed.png -------------------------------------------------------------------------------- /Mirin Template for NotITG/READMe.md: -------------------------------------------------------------------------------- 1 | # Mirin Template for NotITG 2 | Logo commissioned by [XeroOl](https://github.com/XeroOl), the author of [Mirin Template for NotITG](https://github.com/XeroOl/notitg-mirin). -------------------------------------------------------------------------------- /Neovim/NeovimLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Neovim/NeovimLogo.png -------------------------------------------------------------------------------- /Neovim/NeovimShadowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/Neovim/NeovimShadowed.png -------------------------------------------------------------------------------- /PaperMC/PaperMCLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/PaperMC/PaperMCLogo.png -------------------------------------------------------------------------------- /PaperMC/PaperMCLogoShadowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/PaperMC/PaperMCLogoShadowed.png -------------------------------------------------------------------------------- /READMe.md: -------------------------------------------------------------------------------- 1 | # Programming VTuber Logos 2 | 3 | I share these logo so people can use it noncommercially 4 | 5 | > [!IMPORTANT] 6 | > 7 | > 1. **THESE ARE NOT OFFICIAL LOGOS** 8 | > 2. **PLEASE CHECK IF SOMEONE ELSE HAS ASKED FOR THE SAME LOGO BEFORE ASKING FOR IT** 9 | 10 | ## Similar Projects 11 | 12 | - [Fun logos](https://github.com/G2-Games/fun-logos) by @G2-Games 13 | - [ProgrammingVTuberLogos Addon](https://github.com/PetricaT/ProgrammingVTuberLogos-Addon) by @PetricaT 14 | - [ProgrammingVTuberLogos Korean Edition](https://github.com/lDMDiamondl/ProgrammingVTuberLogosKR/) by @lDMDiamondl 15 | - [ProgrammingVTuberLogos for Visual Studio](https://github.com/hvpexe/ProgrammingVTuberLogos-VisualStudio/) by [Manhkbrady on Behance](https://www.behance.net/Manhkbrady) (repo by @hvpexe) 16 | - [sawaratsuki1004's transparent logos](https://github.com/SAWARATSUKI/ServiceLogos) by [sawaratsuki1004 on Twitter](https://twitter.com/sawaratsuki1004) ([Twitter post](https://twitter.com/sawaratsuki1004/status/1782079506083381657)) ([OneDrive](https://onedrive.live.com/?id=4B3290FB3CEB441A!9144&resid=4B3290FB3CEB441A!9144&ithint=folder&authkey=!ADkelorAY-HPbS4&cid=4b3290fb3ceb441a)) 17 | 18 | ## Frequently Asked Questions (FAQs) 19 | 20 | | Question | Answer | 21 | | --------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | 22 | | WHEN WILL IT BE MY QUEUE??!!?!?!?@!?@?!@!?@ | It will take at least a week with the current queue or even longer. I will get to it when I get to it. | 23 | | How do I know things are being kept track? | Check out the [Kanban board](https://github.com/users/Aikoyori/projects/1/views/1) for the project | 24 | | Why is the READMe capitalised like it does? | My mistake and I am too lazy to change it soooo | 25 | | What can I do with these | Refer to the licence section | 26 | | I wanna print it | Feel free to print it for yourselves or share it to others ***FOR FREE*** | 27 | | I saw someone selling it on a T-shirt. Should I buy them? | No! **Be aware** that there are bots on Twitter doing these automatically. | 28 | | Some of these aren't even programming related | Skill issue lol I make what I wanna make | 29 | | I want logo of ○○○○ | File an issue and I will reply back if I want to make it. | 30 | | How do I get included in the list below | File an issue and wait. | 31 | 32 | ## Licence 33 | 34 | Stated below otherwise follow [CC BY-NC-SA 4.0](./LICENSE.md) 35 | Basically 36 | 37 | - Do whatever noncommercial 38 | - Modify it and share it under the same licence 39 | - Credit Me 40 | - Don't sell shit with this stuff on it without asking me 41 | - Feel free to print YOUR OWN STICKERS AND NOT SELL IT 42 | - Feel free to swap in the logos into programs 43 | - I may grant permission to people for these to be used in commercial projects on a case by case basis -------------------------------------------------------------------------------- /ReplaceGuide/InteliJIDEA/InteliJIDEA-en.md: -------------------------------------------------------------------------------- 1 | # Replace the IDEA boot image 2 | 3 | **** 4 | 5 | ## 2024 version 6 | 7 | - Back up the file `C:\Users\userName\AppData\Local\Programs\IntelliJ IDEA Ultimate\lib\product.jar` 8 | - Create a folder named `test` for modification, and put `product.jar` into this folder 9 | - Open `Windows Powershell` terminal in the `test` folder, execute `jar -xvf .\product.jar` to decompress 10 | - Open `idea_logo@2x.png` and `idea_logo.png` with the built-in paint software of Windows, press `ctrl + a` to select all and delete the image 11 | - Open the replacement image with the built-in paint software of Windows, then press `ctrl + a` to select all and set the pixel size to correspond to the two files above. Then copy this replacement image to the two files above, make sure the pixel sizes are the same, save it after replacement 12 | - Delete all files in the `test` folder, then drag the backed up `product.jar` into it, and also drag the replaced `idea_logo@2x.png` and `idea_logo.png` 13 | - Execute the command ` jar -uvf product.jar idea_logo.png` and ` jar -uvf product.jar idea_logo@2x.png` in the terminal to complete the replacement, then put `product.jar` back to its original position to replace 14 | - Then go to `C:\Users\userName\AppData\Local\JetBrains\IntelliJIdea2024.1\splash\`, delete all the cached files in the `splash` folder. 15 | 16 | **** 17 | 18 | ## 2023 and lower version 19 | 20 | - Back up the file `C:\Users\userName\AppData\Local\Programs\IntelliJ IDEA Ultimate\lib\app.jar` 21 | - Create a folder named `test` for modification, and put `app.jar` into this folder 22 | - Open `Windows Powershell` terminal in the `test` folder, execute `jar -xvf .\app.jar` to decompress 23 | - Open `idea_logo@2x.png` and `idea_logo.png` with the built-in paint software of Windows, press `ctrl + a` to select all and delete the image 24 | - Open the replacement image with the built-in paint software of Windows, then press `ctrl + a` to select all and set the pixel size to correspond to the two files above. Then copy this replacement image to the two files above, make sure the pixel sizes are the same, save it after replacement 25 | - Delete all files in the `test` folder, then drag the backed up `app.jar` into it, and also drag the replaced `idea_logo@2x.png` and `idea_logo.png` 26 | - Execute the command ` jar -uvf app.jar idea_logo.png` and ` jar -uvf app.jar idea_logo@2x.png` in the terminal to complete the replacement, then put `app.jar` back to its original position to replace 27 | - Then go to `C:\Users\userName\AppData\Local\JetBrains\IntelliJIdea2023.3\splash\`, delete all the cached files in the `splash` folder. 28 | -------------------------------------------------------------------------------- /ReplaceGuide/InteliJIDEA/InteliJIDEA-zh.md: -------------------------------------------------------------------------------- 1 | # 替换 IDEA 启动图片 2 | 3 | **** 4 | 5 | ## 2024 版本 6 | 7 | - `C:\Users\userName\AppData\Local\Programs\IntelliJ IDEA Ultimate\lib\product.jar` 备份该文件 8 | - 创建一个文件夹 `test` 用来修改,将 `product.jar` 放到该文件夹下 9 | - 在 `test` 文件夹下打开 `windows powershell` 终端,执行 `jar -xvf .\product.jar` 解压 10 | - 将其中的 `idea_logo@2x.png` 和 `idea_logo.png` 用 `windows` 自带的画图软件打开,`ctrl + a` 全选删除图片 11 | - 将需要替换的图片用画图打开,然后 `ctrl + a` 选中全部并设置图片像素大小分别和上面两个照应,然后复制这个要替换的图片到上面两个文件中,一定要保证像素大小是一致的,替换之后保存一下 12 | - 之后把 `test` 文件夹删完,将原来备份过的 `product.jar` 拖进来,把替换过图片的 `idea_logo@2x.png` 和 `idea_logo.png` 也拖进来 13 | - 在终端执行命令 ` jar -uvf product.jar idea_logo.png` 和 ` jar -uvf product.jar idea_logo@2x.png` 完成替换,然后把 `product.jar` 丢回原来的位置,替换掉 14 | - 然后到 `C:\Users\userName\AppData\Local\JetBrains\IntelliJIdea2024.1\splash\` 把 `splash` 里面缓存的文件全部删掉即可 15 | 16 | **** 17 | 18 | ## 2023 版本 19 | 20 | - `C:\Users\userName\AppData\Local\Programs\IntelliJ IDEA Ultimate\lib\app.jar` 备份该文件 21 | - 创建一个文件夹 `test` 用来修改,将 `app.jar` 放到该文件夹下 22 | - 在 `test` 文件夹下打开 `windows powershell` 终端,执行 `jar -xvf .\app.jar` 解压 23 | - 将其中的 `idea_logo@2x.png` 和 `idea_logo.png` 用 `windows` 自带的画图软件打开,`ctrl + a` 全选删除图片 24 | - 将需要替换的图片用画图打开,然后 `ctrl + a` 选中全部并设置图片像素大小分别和上面两个照应,然后复制这个要替换的图片到上面两个文件中,一定要保证像素大小是一致的,替换之后保存一下 25 | - 之后把 `test` 文件夹删完,将原来备份过的 `app.jar` 拖进来,把替换过图片的 `idea_logo@2x.png` 和 `idea_logo.png` 也拖进来 26 | - 在终端执行命令 ` jar -uvf app.jar idea_logo.png` 和 ` jar -uvf app.jar idea_logo@2x.png` 完成替换,然后把 `app.jar` 丢回原来的位置,替换掉 27 | - 然后到 `C:\Users\userName\AppData\Local\JetBrains\IntelliJIdea2023.1\splash\` 把 `splash` 里面缓存的文件全部删掉即可 -------------------------------------------------------------------------------- /ReplaceGuide/VSCode/README.md: -------------------------------------------------------------------------------- 1 | # Replace the VS Code watermark 2 | 3 | ![](preview.png) 4 | 5 | ## Installation 6 | 7 | 1. Install the following extensions: 8 | - [Custom CSS and JS Loader](https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css) 9 | - [Fix VSCode Checksums Next](https://marketplace.visualstudio.com/items?itemName=RimuruChan.vscode-fix-checksums-next) 10 | 2. Add the following to your settings JSON file: 11 | ```json 12 | "vscode_custom_css.imports": [ 13 | "https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/ReplaceGuide/VSCode/style.css" 14 | ] 15 | ``` 16 | 3. Run the following commands: 17 | - _Enable Custom CSS and JS_ 18 | - _Fix Checksums: Apply_ 19 | 4. Restart Visual Studio Code 20 | 21 | ## Uninstallation 22 | 23 | 1. Remove the `vscode_custom_css.imports` section from your settings JSON file 24 | 2. Run the following commands: 25 | - _Disable Custom CSS and JS_ 26 | - _Fix Checksums: Restore_ 27 | 3. Uninstall the _Custom CSS and JS Loader_ and _Fix VSCode Checksums Next_ extensions 28 | 4. Restart Visual Studio Code 29 | -------------------------------------------------------------------------------- /ReplaceGuide/VSCode/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/ReplaceGuide/VSCode/preview.png -------------------------------------------------------------------------------- /ReplaceGuide/VSCode/style.css: -------------------------------------------------------------------------------- 1 | .editor-group-watermark { 2 | max-width: 500px !important; 3 | padding-left: 1em; 4 | padding-right: 1em; 5 | } 6 | 7 | .editor-group-watermark .letterpress { 8 | background-image: url("https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/VSCode/VSCode.png") !important; 9 | aspect-ratio: 8/5 !important; 10 | } 11 | -------------------------------------------------------------------------------- /VSCode/VSCode-Thick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/VSCode/VSCode-Thick.png -------------------------------------------------------------------------------- /VSCode/VSCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/VSCode/VSCode.png -------------------------------------------------------------------------------- /osu/osuLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/osu/osuLogo.png -------------------------------------------------------------------------------- /osu/osuLogoOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/osu/osuLogoOld.png -------------------------------------------------------------------------------- /osu/osuLogoShadowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/osu/osuLogoShadowed.png -------------------------------------------------------------------------------- /osu/osuLogoShadowedOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/0e8b7520b97c1d0ab997488da38bb4b1ad67c06d/osu/osuLogoShadowedOld.png --------------------------------------------------------------------------------