├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── about-me ├── CONTRIBUTING.md ├── README.md ├── styling.md └── templates │ ├── Simple-Template │ ├── Seenkid's about me.png │ ├── Simple.md │ ├── Simple2_screen (1).png │ ├── Simple2_screen (2).png │ ├── simple about me │ │ ├── simple-about-me.md │ │ └── simple-about-me.png │ ├── simple.png │ └── simple2.md │ ├── Slash-Commands-Example │ ├── IDEAS.md │ └── about-me-template.md │ ├── flags │ ├── Austria │ │ ├── Screenshot_12.png │ │ └── austria_flag.md │ ├── Colombia │ │ ├── Colombia.md │ │ └── colombia.png │ ├── England │ │ └── England.md │ ├── Estonia │ │ ├── estonia_flag.md │ │ └── estonia_screen.png │ ├── Luxembourg │ │ ├── Luxembourg.md │ │ └── Luxembourg.png │ ├── Norway │ │ ├── Norway.md │ │ └── norway.png │ ├── Peru │ │ └── Peru.md │ ├── Poland │ │ └── Poland.md │ ├── Russian │ │ └── russian flag.md │ ├── Scotland │ │ └── Scotland.md │ ├── Sweden │ │ ├── Sweden.md │ │ └── sweden.png │ ├── Ukraine │ │ ├── Screenshot_1.png │ │ └── ukraine flag.md │ ├── United Arab Emirates │ │ ├── United Arab Emirates.md │ │ └── United Arab Emirates.png │ ├── belgium │ │ ├── Screenshot_2.png │ │ └── belgium-flag │ ├── benin │ │ ├── benin.md │ │ └── benin.png │ ├── bulgaria │ │ ├── Bulfaria.png │ │ └── Bulgaria.md │ ├── finland │ │ ├── Screenshot_1.png │ │ └── finland.md │ ├── france │ │ ├── Screenshot_2.png │ │ └── french-flag.md │ ├── genderqueer │ │ ├── genderqueer.md │ │ └── genderqueer.png │ ├── germany │ │ ├── Screenshot_3.png │ │ └── german-flag.md │ ├── guinea │ │ ├── Guinea.png │ │ └── guinea.md │ ├── hungary │ │ ├── Hungary.md │ │ └── hungary.png │ ├── indonesia │ │ ├── indonesia.md │ │ └── indonesia.png │ ├── ireland │ │ ├── ireland-flag.png │ │ └── ireland.md │ ├── italy │ │ └── italy-flag.md │ ├── lithuania │ │ ├── lithuania.md │ │ └── lithuania.png │ ├── monaco │ │ ├── monaco.md │ │ └── monaco.png │ ├── non-binary │ │ ├── non-binary.md │ │ └── non-binary.png │ ├── pansexual │ │ ├── pansexual.md │ │ └── pansexual.png │ ├── pride-flag │ │ ├── homosexual flag.png │ │ └── pride-flag.md │ ├── straight │ │ ├── straight.md │ │ └── straight.png │ ├── swiss │ │ └── swiss-flag.md │ ├── transgender │ │ ├── transgender.md │ │ └── transgender.png │ └── vietnam │ │ ├── vietnam.md │ │ └── vietnam.png │ ├── other │ ├── 2022 │ │ └── 2022.md │ ├── Ascii │ │ ├── Bunny hugs love.md │ │ └── bunny girl.md │ ├── apple │ │ └── apple-logo.md │ ├── creeper │ │ └── creeper │ ├── ez-ascii-art │ │ ├── ez-ascii-art.png │ │ └── ez.md │ ├── heart │ │ ├── heart.md │ │ └── heart.png │ ├── lines │ │ └── lines.md │ ├── minesweeper │ │ ├── minesweeper.gif │ │ └── minesweeper.md │ ├── stars(sky) │ │ ├── stars.md │ │ └── stars.png │ └── tetris │ │ ├── tetris.md │ │ ├── tetris.png │ │ └── tetris2.png │ └── template-model.md ├── docs ├── _config.yml └── index.md ├── our_discord.md ├── rich-presence ├── index.js ├── read.md └── start.bat └── styling.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [SeenKid] 2 | patreon: tweeklg 3 | ko_fi: lofiseenkid 4 | custom: 'https://www.paypal.me/tweeklg' 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: "[BUG REPORT]" 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 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | 40 | 41 | ------------ 42 | 43 | 44 | **Décrivez le BUG** 45 | Une description claire et concise de ce qu'est le BUG. 46 | 47 | **Reproduire** 48 | Étapes pour reproduire le comportement : 49 | 1. Allez à '...' 50 | 2. Cliquez sur '....' 51 | 3. Faites défiler jusqu'à '....' 52 | 4. Voir erreur 53 | 54 | **Comportement attendu** 55 | Une description claire et concise de ce à quoi vous vous attendiez. 56 | 57 | **Captures d'écran** 58 | Le cas échéant, ajoutez des captures d'écran pour expliquer votre problème. 59 | 60 | **De bureau (veuillez compléter les informations suivantes) :** 61 | - Système d'exploitation : [par ex. iOS] 62 | - Navigateur [par ex. chromé, safari] 63 | - Version [par ex. 22] 64 | 65 | **Smartphone (veuillez compléter les informations suivantes) :** 66 | - Appareil : [par ex. iphone 6] 67 | - Système d'exploitation : [par ex. iOS8.1] 68 | - Navigateur [par ex. navigateur de stock, safari] 69 | - Version [par ex. 22] 70 | 71 | **Contexte supplémentaire** 72 | Ajoutez ici tout autre contexte concernant le problème. 73 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /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 | Lofi Boy#0001. 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 | Cordially, SeenKid. 131 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution guidelines 2 | 3 | - Images must have descriptive file names in the following format: 4 | - Awesome_File_Name.png 5 | 6 | - Add your new customisation to the folder that best describes the subject matter of the custom about me. If no existing folder applies create a new one. 7 | 8 | - All customisations added must not be a copy-paste of another contributor or feel free to open a pull request if you want to make editing 9 | 10 | - **No nudity or NSFW related content** 11 | - If these rules are not respected, your contributions will not be added to the project. 12 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | # Discord Profile customization 23 | Discord About Me customization - A simple way to have a beautiful discord profile ! 24 | This project is kinda ended. If you want to make contributions, go ahead! 25 | 26 | # Important 27 | - Official and easy wiki [On Gitbook](https://ac-1010.gitbook.io/discord-profile-customization/) 28 | - If you want to help the project, you can fork it or directly make pull request here. (Not sure to accept them.) 29 | - If you see that something is missing, a file is corrupted or unusable, please, make sure to create an issue to report this 30 | - You can find here the [App Wiki](https://github.com/SeenKid/discord-profile-customization/wiki) 31 | 32 | # Official Contributors 33 | - Uny_Ty 34 | - ImLuLu 35 | - Seenkid 36 | 37 | # Must Know 38 | - The max characters limit in discord about-me is 190 chars. 39 | - Discord made an update. You can now add custom emojis in your about-me (like server emojis) 40 | 41 | # My Discord 42 | You can join my discord here : [SpaceWatch](https://discord.gg/YH8Qbjr2sJ). 43 | 44 | # Contribution guidelines 45 | 46 | - Images must have descriptive file names in the following format: 47 | - Awesome_File_Name.png 48 | 49 | - Add your new customization to the folder that best describes the subject matter of the custom about me. If no existing folder applies create a new one. 50 | 51 | - All customizations added must not be a copy-paste of another contributor or feel free to open a pull request if you want to make editing 52 | - In the case that you modify, share or redistribute our project, please give us credit. We are the original creators of the project. 53 | 54 | - **No nudity or NSFW related content** 55 | 56 | 57 | Original "about-me" section made by [HeyImLulu](https://github.com/Heyimlulu/). 58 | 59 | # French 60 | 61 | ## Important 62 | - Wiki en français officiel : [Sur Gitbook](https://ac-1010.gitbook.io/discord-profile-customization/) 63 | - Si vous voulez aider le projet, vous pouvez le forker ou directement faire une pull request ici. (Pas sûr de les accepter.) 64 | - Si vous voyez qu'il manque quelque chose, qu'un fichier est corrompu ou inutilisable, assurez-vous de créer un problème pour le signaler 65 | - Vous pouvez trouver ici le [App Wiki](https://github.com/SeenKid/discord-profile-customization/wiki) 66 | 67 | # Contributeurs officiels 68 | - Uny_Ty 69 | - ImLuLu 70 | - Seenkid 71 | 72 | # a savoir 73 | - La limite maximale de caractères dans discord about-me est de 190 caractères. 74 | - Une nouvelle mise à jour de discord permet d'ajouter des émojis personnalisés dans l'about-me (comme des émojis de serveur) 75 | 76 | # Mon Discord 77 | Vous pouvez rejoindre mon discord ici : [SpaceWatch](https://discord.gg/YH8Qbjr2sJ). 78 | 79 | # Consignes de contribution 80 | - Les images doivent avoir des noms de fichiers descriptifs au format suivant : 81 | - Awesome_File_Name.png 82 | 83 | - Ajoutez votre nouvelle personnalisation au dossier qui décrit le mieux le sujet de la personnalisation à propos de moi. Si aucun dossier existant ne s'applique, créez-en un nouveau. 84 | 85 | - Toutes les personnalisations ajoutées ne doivent pas être un copier-coller d'un autre contributeur ou n'hésitez pas à ouvrir une pull request si vous souhaitez faire de l'édition 86 | - Dans le cas où vous modifiez, partagez ou redistribuez notre projet, merci de nous en créditer. Nous sommes les créateurs originaux du projet. 87 | 88 | - **Pas de contenu lié à la nudité ou au NSFW** 89 | 90 | 91 | Section originale "à propos de moi" réalisée par [HeyImLulu](https://github.com/Heyimlulu/). 92 | -------------------------------------------------------------------------------- /about-me/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution guidelines 2 | 3 | - Images must have descriptive file names in the following format: 4 | - Awesome_File_Name.png 5 | 6 | - Add your new customisation to the folder that best describes the subject matter of the custom about me. If no existing folder applies create a new one. 7 | 8 | - All customisations added must not be a copy-paste of another contributor or feel free to open a pull request if you want to make editing 9 | 10 | - **No nudity or NSFW related content** 11 | -------------------------------------------------------------------------------- /about-me/README.md: -------------------------------------------------------------------------------- 1 | # Discord About Me Customisation 2 | 3 | Discord About Me Customisation 4 | 5 | # Important 6 | 7 | If you want to help the project, you can fork it or directly make pull request here. 8 | 9 | # Contribution guidelines 10 | 11 | - Images must have descriptive file names in the following format: 12 | - Awesome_File_Name.png 13 | 14 | - Add your new customisation to the folder that best describes the subject matter of the custom about me. If no existing folder applies create a new one. 15 | 16 | - All customisations added must not be a copy-paste of another contributor or feel free to open a pull request if you want to make editing 17 | 18 | - **No nudity or NSFW related content** 19 | -------------------------------------------------------------------------------- /about-me/styling.md: -------------------------------------------------------------------------------- 1 | # Styling & formating for your about-me 2 | 3 | ## Default Styles 4 | 5 | ### Italics 6 | ``` 7 | *italics* or _italics_ 8 | ``` 9 | ### Underline 10 | ``` 11 | __underlined__ 12 | ``` 13 | 14 | ### Bold 15 | ``` 16 | **bold** 17 | ``` 18 | 19 | ### Bold Italics 20 | ``` 21 | ***bold italics*** 22 | ``` 23 | 24 | ### Strikethrough 25 | ``` 26 | ~~Strikethrough~~ 27 | ``` 28 | 29 | ### Code Blocks 30 | ``` 31 | `This is a code block` 32 | ``` 33 | 34 | ### Spoiler 35 | ``` 36 | ||spoiler|| 37 | ``` 38 | 39 | ### Slash Commands 40 | ``` 41 | 42 | ``` 43 | 44 | ## Emoji 45 | 46 | - Unicode Characters 47 | - `🍉` 48 | - You can use [Smiley.cool emojilist](https://smiley.cool/emoji-list.php) to get emojies 49 | 50 | ## Timestamps 51 | 52 | You can use an [Unix Timestamp Converter](https://www.epochconverter.com/) for easy human readable date conversion 53 | 54 | | Type | Structure | Example | 55 | | - | - | - | 56 | | Unix Timestamp | | | 57 | | Unix Timestamp (Styled) | | | 58 | 59 | | Style | Output | Description | 60 | | - | - | - | 61 | | t | 16:20 | Short Time | 62 | | T | 16:20:30 | Long Time | 63 | | d | 20/04/2021 | Short Date | 64 | | D | 20 April 2021 | Long Date | 65 | | f * | 20 April 2021 16:20 | Short Date/Time | 66 | | F | Tuesday, 20 April 2021 16:20 | Long Date/Time | 67 | | R | 2 months ago | Relative Time | 68 | 69 | For example : 70 | 71 | alive since 72 | discord user since 73 | 74 | ## Texts & Formating 75 | - You can use [Fancy Text Generator](https://lingojam.com/FancyTextGenerator) to make cool police fonts 76 | - You can use [Cool Fancy Text Generator](https://coolsymbol.com/cool-fancy-text-generator.html) to make cool police fonts 77 | - You can use [Smiley.cool lines](https://smiley.cool/lines.php) to make lines 78 | - You can use [Smiley.cool waves](https://smiley.cool/waves.php) to make waves 79 | 80 | # Aknowledgements 81 | 82 | - [Discord](https://discord.com/developers/docs/intro) for their docs and text formatting examples 83 | - [Unix Timestamp Converter](https://www.epochconverter.com/) easy converter 84 | -------------------------------------------------------------------------------- /about-me/templates/Simple-Template/Seenkid's about me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/Simple-Template/Seenkid's about me.png -------------------------------------------------------------------------------- /about-me/templates/Simple-Template/Simple.md: -------------------------------------------------------------------------------- 1 | # simple template 2 | 3 | ## Seenkid's about me : 4 | ``` 5 | 💫 6 | **`🖥️` 〢Informaticien** (Dev^)** 🌋 7 | `🧠` 〢MBTI Type : INTJ 💠 8 | `🎮` 〢Gamer 🧱 PC Master Race 9 | `🔗` 〢https://linktr.ee/seenkid 🧭 10 | `🌍` 〢From 🇨🇭 Swiss (Wallis)**. ❄ 11 | ``` 12 | 13 | or 14 | 15 | ``` 16 | **Alive since〢 ❄ 17 | `🔗` 〢 https://linktr.ee/seenkid 18 | `🧠` 〢 MBTI Type : INTJ 💠 19 | `🌍` 〢 From 🇨🇭 Swiss (VS)^ 20 | `🖥️` 〢 Informaticien - Dev 🧭 21 | Discord user since〢** 22 | ``` 23 | 24 | # Author 25 | 26 | - SeenKid 27 | -------------------------------------------------------------------------------- /about-me/templates/Simple-Template/Simple2_screen (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/Simple-Template/Simple2_screen (1).png -------------------------------------------------------------------------------- /about-me/templates/Simple-Template/Simple2_screen (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/Simple-Template/Simple2_screen (2).png -------------------------------------------------------------------------------- /about-me/templates/Simple-Template/simple about me/simple-about-me.md: -------------------------------------------------------------------------------- 1 | # simple-about-me 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ** 7 | ┏🌺┓ TEXT 8 | ┃💖┃ TEXT 9 | ┃✍┃ TEXT 10 | ┃💬┃ TEXT 11 | ┃🎵┃ TEXT 12 | ┗🌍┛ TEXT 13 | ** 14 | ``` 15 | 16 | # Author 17 | 18 | - SeenKid 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /about-me/templates/Simple-Template/simple about me/simple-about-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/Simple-Template/simple about me/simple-about-me.png -------------------------------------------------------------------------------- /about-me/templates/Simple-Template/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/Simple-Template/simple.png -------------------------------------------------------------------------------- /about-me/templates/Simple-Template/simple2.md: -------------------------------------------------------------------------------- 1 | # Simple Template 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ╔═════════════════════╗ 7 | ╠ • 8 | ╠ • 9 | ╠ • 10 | ╠ • 11 | ╚═════════════════════╝ 12 | ``` 13 | 14 | # Author 15 | 16 | - SeenKid 17 | -------------------------------------------------------------------------------- /about-me/templates/Slash-Commands-Example/IDEAS.md: -------------------------------------------------------------------------------- 1 | **┏:coffee:┓ :books: :stuffed_flatbread: 2 | ┃:sparkling_heart:┃PHP, JS, LUA, Java, C# :tools: 3 | ┃:writing_hand:┃ Projects : :100: 4 | ┃:trident:┃ :rice_scene: 5 | ┃:musical_note:┃ 53 Thieves - Heights :heart: 6 | ┗:earth_africa:┛ Suisse :flag_ch: 7 | ** 8 | 9 | Slash commands works like that : 10 | 11 | 12 | -------------------------------------------------------------------------------- /about-me/templates/Slash-Commands-Example/about-me-template.md: -------------------------------------------------------------------------------- 1 | ``` 2 | **┏:coffee:┓ :books: :stuffed_flatbread: 3 | ┃:sparkling_heart:┃PHP, JS, LUA, Java, C# :tools: 4 | ┃:writing_hand:┃ Projects : :100: 5 | ┃:trident:┃ :rice_scene: 6 | ┃:musical_note:┃ 53 Thieves - Heights :heart: 7 | ┗:earth_africa:┛ Suisse :flag_ch: ** 8 | ``` 9 | -------------------------------------------------------------------------------- /about-me/templates/flags/Austria/Screenshot_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/Austria/Screenshot_12.png -------------------------------------------------------------------------------- /about-me/templates/flags/Austria/austria_flag.md: -------------------------------------------------------------------------------- 1 | # Austria Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟥🟥🟥🟥 7 | 🟥🟥🟥🟥🟥🟥 8 | ⬜️⬜️⬜️⬜️⬜️⬜️ 9 | ⬜️⬜️⬜️⬜️⬜️⬜️ 10 | 🟥🟥🟥🟥🟥🟥 11 | 🟥🟥🟥🟥🟥🟥 12 | ``` 13 | 14 | # Author 15 | 16 | - SeenKid 17 | -------------------------------------------------------------------------------- /about-me/templates/flags/Colombia/Colombia.md: -------------------------------------------------------------------------------- 1 | # Colombia Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟨🟨🟨🟨🟨🟨 7 | 🟨🟨🟨🟨🟨🟨 8 | 🟦🟦🟦🟦🟦🟦 9 | 🟥🟥🟥🟥🟥🟥 10 | ``` 11 | 12 | # Author 13 | 14 | - SeenKid 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/Colombia/colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/Colombia/colombia.png -------------------------------------------------------------------------------- /about-me/templates/flags/England/England.md: -------------------------------------------------------------------------------- 1 | # England Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬜⬜🟥⬜⬜ 7 | ⬜⬜🟥⬜⬜ 8 | 🟥🟥🟥🟥🟥 9 | ⬜⬜🟥⬜⬜ 10 | ⬜⬜🟥⬜⬜ 11 | ``` 12 | 13 | # Author 14 | 15 | - Uny_Ty#5096 -------------------------------------------------------------------------------- /about-me/templates/flags/Estonia/estonia_flag.md: -------------------------------------------------------------------------------- 1 | # Estonia Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬜️⬜️⬜️⬜️⬜️⬜️ 7 | ⬜️⬜️⬜️⬜️⬜️⬜️ 8 | 🟦🟦🟦🟦🟦🟦 9 | 🟦🟦🟦🟦🟦🟦 10 | ⬛️⬛️⬛️⬛️⬛️⬛️ 11 | ⬛️⬛️⬛️⬛️⬛️⬛️ 12 | ``` 13 | 14 | # Author 15 | 16 | - SeenKid 17 | -------------------------------------------------------------------------------- /about-me/templates/flags/Estonia/estonia_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/Estonia/estonia_screen.png -------------------------------------------------------------------------------- /about-me/templates/flags/Luxembourg/Luxembourg.md: -------------------------------------------------------------------------------- 1 | # Luxembourg Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟥🟥🟥🟥 7 | ⬜️⬜️⬜️⬜️⬜️⬜️ 8 | 🟦🟦🟦🟦🟦🟦 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid#0001 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/Luxembourg/Luxembourg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/Luxembourg/Luxembourg.png -------------------------------------------------------------------------------- /about-me/templates/flags/Norway/Norway.md: -------------------------------------------------------------------------------- 1 | # Norway Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟦🟥🟥🟥 7 | 🟥🟥🟦🟥🟥🟥 8 | 🟦🟦🟦🟦🟦🟦 9 | 🟥🟥🟦🟥🟥🟥 10 | 🟥🟥🟦🟥🟥🟥 11 | ``` 12 | 13 | # Author 14 | 15 | - SeenKid 16 | -------------------------------------------------------------------------------- /about-me/templates/flags/Norway/norway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/Norway/norway.png -------------------------------------------------------------------------------- /about-me/templates/flags/Peru/Peru.md: -------------------------------------------------------------------------------- 1 | # Peru Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥⬜⬜🟥🟥 7 | 🟥🟥⬜⬜🟥🟥 8 | 🟥🟥⬜⬜🟥🟥 9 | 🟥🟥⬜⬜🟥🟥 10 | 🟥🟥⬜⬜🟥🟥 11 | ``` 12 | 13 | # Author 14 | 15 | - Uny_Ty#5096 -------------------------------------------------------------------------------- /about-me/templates/flags/Poland/Poland.md: -------------------------------------------------------------------------------- 1 | # Poland Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬜⬜⬜⬜⬜ 7 | ⬜⬜⬜⬜⬜ 8 | 🟥🟥🟥🟥🟥 9 | 🟥🟥🟥🟥🟥 10 | ``` 11 | 12 | # Author 13 | 14 | - Uny_Ty#5096 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/Russian/russian flag.md: -------------------------------------------------------------------------------- 1 | # Russian Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬜⬜⬜⬜⬜⬜ 7 | ⬜⬜⬜⬜⬜⬜ 8 | 🟦🟦🟦🟦🟦🟦 9 | 🟦🟦🟦🟦🟦🟦 10 | 🟥🟥🟥🟥🟥🟥 11 | 🟥🟥🟥🟥🟥🟥 12 | ``` 13 | 14 | # Author 15 | 16 | - Uny_Ty#5096 17 | -------------------------------------------------------------------------------- /about-me/templates/flags/Scotland/Scotland.md: -------------------------------------------------------------------------------- 1 | # Scotland Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬜🟦🟦🟦⬜ 7 | 🟦⬜🟦⬜🟦 8 | 🟦🟦⬜🟦🟦 9 | 🟦⬜🟦⬜🟦 10 | ⬜🟦🟦🟦⬜ 11 | ``` 12 | 13 | # Author 14 | 15 | - Uny_Ty#5096 -------------------------------------------------------------------------------- /about-me/templates/flags/Sweden/Sweden.md: -------------------------------------------------------------------------------- 1 | # Sweden Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟦🟨🟦🟦🟦🟦 7 | 🟦🟨🟦🟦🟦🟦 8 | 🟨🟨🟨🟨🟨🟨 9 | 🟦🟨🟦🟦🟦🟦 10 | 🟦🟨🟦🟦🟦🟦 11 | ``` 12 | 13 | # Author 14 | 15 | - Uny_Ty#5096 16 | -------------------------------------------------------------------------------- /about-me/templates/flags/Sweden/sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/Sweden/sweden.png -------------------------------------------------------------------------------- /about-me/templates/flags/Ukraine/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/Ukraine/Screenshot_1.png -------------------------------------------------------------------------------- /about-me/templates/flags/Ukraine/ukraine flag.md: -------------------------------------------------------------------------------- 1 | # Ukraine flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟦🟦🟦🟦🟦🟦 7 | 🟦🟦🟦🟦🟦🟦 8 | 🟨🟨🟨🟨🟨🟨 9 | 🟨🟨🟨🟨🟨🟨 10 | 11 | OR 12 | 13 | 🟦🟦🟦🟦 14 | 🟨🟨🟨🟨 15 | ``` 16 | 17 | # Author 18 | 19 | - SeenKid 20 | -------------------------------------------------------------------------------- /about-me/templates/flags/United Arab Emirates/United Arab Emirates.md: -------------------------------------------------------------------------------- 1 | # United Arab Emirates Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟩🟩🟩 7 | 🟥🟥⬜️⬜️⬜️ 8 | 🟥🟥⬛️⬛️⬛️ 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/United Arab Emirates/United Arab Emirates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/United Arab Emirates/United Arab Emirates.png -------------------------------------------------------------------------------- /about-me/templates/flags/belgium/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/belgium/Screenshot_2.png -------------------------------------------------------------------------------- /about-me/templates/flags/belgium/belgium-flag: -------------------------------------------------------------------------------- 1 | # Belgium Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬛🟨🟥 7 | ⬛🟨🟥 8 | ⬛🟨🟥 9 | ``` 10 | 11 | # Author 12 | 13 | - Seenkid -------------------------------------------------------------------------------- /about-me/templates/flags/benin/benin.md: -------------------------------------------------------------------------------- 1 | # Benin Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟩🟩🟨🟨🟨 7 | 🟩🟩🟨🟨🟨 8 | 🟩🟩🟥🟥🟥 9 | 🟩🟩🟥🟥🟥 10 | ``` 11 | 12 | # Author 13 | 14 | - SeenKid 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/benin/benin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/benin/benin.png -------------------------------------------------------------------------------- /about-me/templates/flags/bulgaria/Bulfaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/bulgaria/Bulfaria.png -------------------------------------------------------------------------------- /about-me/templates/flags/bulgaria/Bulgaria.md: -------------------------------------------------------------------------------- 1 | # Bulgaria Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬜️⬜️⬜️⬜️⬜️ 7 | 🟩🟩🟩🟩🟩 8 | 🟥🟥🟥🟥🟥 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/finland/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/finland/Screenshot_1.png -------------------------------------------------------------------------------- /about-me/templates/flags/finland/finland.md: -------------------------------------------------------------------------------- 1 | # finland Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬜️🟦⬜️⬜️⬜️⬜️ 7 | 🟦🟦🟦🟦🟦🟦 8 | ⬜️🟦⬜️⬜️⬜️⬜️ 9 | ⬜️🟦⬜️⬜️⬜️⬜️ 10 | ``` 11 | 12 | # Author 13 | 14 | - SeenKid 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/france/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/france/Screenshot_2.png -------------------------------------------------------------------------------- /about-me/templates/flags/france/french-flag.md: -------------------------------------------------------------------------------- 1 | # French Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟦🟦⬜⬜🟥🟥 7 | 🟦🟦⬜⬜🟥🟥 8 | 🟦🟦⬜⬜🟥🟥 9 | 🟦🟦⬜⬜🟥🟥 10 | ``` 11 | 12 | # Author 13 | 14 | - Slimey#0667 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/genderqueer/genderqueer.md: -------------------------------------------------------------------------------- 1 | # genderqueer Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟪🟪🟪🟪🟪🟪 7 | ⬜️⬜️⬜️⬜️⬜️⬜️ 8 | 🟩🟩🟩🟩🟩🟩 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/genderqueer/genderqueer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/genderqueer/genderqueer.png -------------------------------------------------------------------------------- /about-me/templates/flags/germany/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/germany/Screenshot_3.png -------------------------------------------------------------------------------- /about-me/templates/flags/germany/german-flag.md: -------------------------------------------------------------------------------- 1 | # German Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬛⬛⬛⬛ 7 | 🟥🟥🟥🟥 8 | 🟨🟨🟨🟨 9 | ``` 10 | 11 | # Author 12 | 13 | - Slimey#0667 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/guinea/Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/guinea/Guinea.png -------------------------------------------------------------------------------- /about-me/templates/flags/guinea/guinea.md: -------------------------------------------------------------------------------- 1 | # Guinea Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟨🟨🟩🟩 7 | 🟥🟥🟨🟨🟩🟩 8 | 🟥🟥🟨🟨🟩🟩 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/hungary/Hungary.md: -------------------------------------------------------------------------------- 1 | # Hungary Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟥🟥🟥🟥 7 | ⬜️⬜️⬜️⬜️⬜️⬜️ 8 | 🟩🟩🟩🟩🟩🟩 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid#0001 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/hungary/hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/hungary/hungary.png -------------------------------------------------------------------------------- /about-me/templates/flags/indonesia/indonesia.md: -------------------------------------------------------------------------------- 1 | # Austria Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟥🟥🟥🟥 7 | 🟥🟥🟥🟥🟥🟥 8 | ⬜️⬜️⬜️⬜️⬜️⬜️ 9 | ⬜️⬜️⬜️⬜️⬜️⬜️ 10 | ``` 11 | 12 | # Author 13 | 14 | - SeenKid 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/indonesia/indonesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/indonesia/indonesia.png -------------------------------------------------------------------------------- /about-me/templates/flags/ireland/ireland-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/ireland/ireland-flag.png -------------------------------------------------------------------------------- /about-me/templates/flags/ireland/ireland.md: -------------------------------------------------------------------------------- 1 | # Ireland Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟩🟩⬜️⬜️🟧🟧 7 | 🟩🟩⬜️⬜️🟧🟧 8 | 🟩🟩⬜️⬜️🟧🟧 9 | 🟩🟩⬜️⬜️🟧🟧 10 | ``` 11 | 12 | # Author 13 | 14 | - SeenKid 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/italy/italy-flag.md: -------------------------------------------------------------------------------- 1 | # French Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟩🟩⬜⬜🟥🟥 7 | 🟩🟩⬜⬜🟥🟥 8 | 🟩🟩⬜⬜🟥🟥 9 | ``` 10 | 11 | # Author 12 | 13 | - Slimey#0667 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/lithuania/lithuania.md: -------------------------------------------------------------------------------- 1 | # Lithuania Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟨🟨🟨🟨🟨 7 | 🟩🟩🟩🟩🟩 8 | 🟥🟥🟥🟥🟥 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid 14 | -------------------------------------------------------------------------------- /about-me/templates/flags/lithuania/lithuania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/lithuania/lithuania.png -------------------------------------------------------------------------------- /about-me/templates/flags/monaco/monaco.md: -------------------------------------------------------------------------------- 1 | # monaco Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟥🟥🟥🟥 7 | 🟥🟥🟥🟥🟥🟥 8 | ⬜️⬜️⬜️⬜️⬜️⬜️ 9 | ⬜️⬜️⬜️⬜️⬜️⬜️ 10 | ``` 11 | 12 | # Author 13 | 14 | - SeenKid 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/monaco/monaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/monaco/monaco.png -------------------------------------------------------------------------------- /about-me/templates/flags/non-binary/non-binary.md: -------------------------------------------------------------------------------- 1 | # non-binary Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟨🟨🟨🟨🟨🟨 7 | ⬜️⬜️⬜️⬜️⬜️⬜️ 8 | 🟪🟪🟪🟪🟪🟪 9 | ⬛️⬛️⬛️⬛️⬛️⬛️ 10 | ``` 11 | 12 | # Author 13 | 14 | - SeenKid 15 | -------------------------------------------------------------------------------- /about-me/templates/flags/non-binary/non-binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/non-binary/non-binary.png -------------------------------------------------------------------------------- /about-me/templates/flags/pansexual/pansexual.md: -------------------------------------------------------------------------------- 1 | # pansexual Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟪🟪🟪🟪🟪🟪 7 | 🟪🟪🟪🟪🟪🟪 8 | 🟨🟨🟨🟨🟨🟨 9 | 🟨🟨🟨🟨🟨🟨 10 | 🟦🟦🟦🟦🟦🟦 11 | 🟦🟦🟦🟦🟦🟦 12 | ``` 13 | 14 | # Author 15 | 16 | - SeenKid 17 | -------------------------------------------------------------------------------- /about-me/templates/flags/pansexual/pansexual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/pansexual/pansexual.png -------------------------------------------------------------------------------- /about-me/templates/flags/pride-flag/homosexual flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/pride-flag/homosexual flag.png -------------------------------------------------------------------------------- /about-me/templates/flags/pride-flag/pride-flag.md: -------------------------------------------------------------------------------- 1 | # Creeper 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟥🟥🟥🟥 7 | 🟧🟧🟧🟧🟧🟧 8 | 🟨🟨🟨🟨🟨🟨 9 | 🟩🟩🟩🟩🟩🟩 10 | 🟦🟦🟦🟦🟦🟦 11 | 🟪🟪🟪🟪🟪🟪 12 | 13 | ``` 14 | 15 | # Author 16 | 17 | - Seenkid 18 | -------------------------------------------------------------------------------- /about-me/templates/flags/straight/straight.md: -------------------------------------------------------------------------------- 1 | # straight Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬛️⬛️⬛️⬛️⬛️⬛️ 7 | ⬜️⬜️⬜️⬜️⬜️⬜️ 8 | ⬛️⬛️⬛️⬛️⬛️⬛️ 9 | ⬜️⬜️⬜️⬜️⬜️⬜️ 10 | ⬛️⬛️⬛️⬛️⬛️⬛️ 11 | ``` 12 | 13 | # Author 14 | 15 | - SeenKid 16 | -------------------------------------------------------------------------------- /about-me/templates/flags/straight/straight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/straight/straight.png -------------------------------------------------------------------------------- /about-me/templates/flags/swiss/swiss-flag.md: -------------------------------------------------------------------------------- 1 | # Swiss Flag 2 | 3 | ### Preview 4 | 5 | ![](https://raw.githubusercontent.com/Heyimlulu/Discord-About-Me-Customisation/main/templates/flags/swiss/demo.png) 6 | 7 | ### Copy & Paste Markdown 8 | 9 | ``` 10 | 🟥🟥🟥🟥🟥 11 | 🟥🟥⬜🟥🟥 12 | 🟥⬜⬜⬜🟥 13 | 🟥🟥⬜🟥🟥 14 | 🟥🟥🟥🟥🟥 15 | ``` 16 | 17 | # Author 18 | 19 | - Slimey#0667 20 | -------------------------------------------------------------------------------- /about-me/templates/flags/transgender/transgender.md: -------------------------------------------------------------------------------- 1 | # Transgender Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟦🟦🟦🟦🟦🟦 7 | 🟪🟪🟪🟪🟪🟪 8 | ⬜️⬜️⬜️⬜️⬜️⬜️ 9 | 🟦🟦🟦🟦🟦🟦 10 | 🟪🟪🟪🟪🟪🟪 11 | ``` 12 | 13 | # Author 14 | 15 | - SeenKid 16 | -------------------------------------------------------------------------------- /about-me/templates/flags/transgender/transgender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/transgender/transgender.png -------------------------------------------------------------------------------- /about-me/templates/flags/vietnam/vietnam.md: -------------------------------------------------------------------------------- 1 | # vietnam Flag 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥🟥🟥🟥🟥 7 | 🟥🟥⭐🟥🟥 8 | 🟥🟥🟥🟥🟥 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid#0001 -------------------------------------------------------------------------------- /about-me/templates/flags/vietnam/vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/flags/vietnam/vietnam.png -------------------------------------------------------------------------------- /about-me/templates/other/2022/2022.md: -------------------------------------------------------------------------------- 1 | # Simple Template 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ┏━━┓┏━━┓┏━━┓┏━━┓ 7 | ┗━┓┃┃┏┓┃┗━┓┃┗━┓┃ 8 | ┏━┛┃┃┃┃┃┏━┛┃┏━┛┃ 9 | ┃┗━┓┃┗┛┃┃┗━┓┃┗━┓ 10 | ┗━━┛┗━━┛┗━━┛┗━━┛ 11 | ``` 12 | # Author 13 | 14 | - ac#1010 15 | -------------------------------------------------------------------------------- /about-me/templates/other/Ascii/Bunny hugs love.md: -------------------------------------------------------------------------------- 1 | # ascii art 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 7 | ``` 8 | 9 | # Author 10 | 11 | - SeenKid 12 | -------------------------------------------------------------------------------- /about-me/templates/other/Ascii/bunny girl.md: -------------------------------------------------------------------------------- 1 | # bunny girl ascii art 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 |            ,,. -- 、 7 |           ,.'´    `ヽ.  ,. ''"´ ̄`ヽ、 8 |            ,'  i       Y´         ':, 9 |         |  ';       !  ,ゝ、      ', 10 |         ,.:'i    ヽ、,_____,,ノ_,/ヽ、 `ヽ、,_____,ノ 11 |       /::::::ヽ、__,/:::::::::::::::::::::::::::::::::`"フ 12 |      /::::::::::::::::::::::::::::::::;:::::::::::::ト、:!:::::::::ヾ、 13 |     ;'::::::::::/::::::::;:': _L_::!:::::::::::::;i--‐!:::::::!::::::〉 14 |     i:::::::::;'::::::::/ ´ _L_;ハ:::::::::::/ ,ァ r '、::;ハ:::/ 15 |     !::::::::!:::::::::! ァ' ´i ´ ノ|``  ';/ iノ! !V!::::`( 16 |      '、;:::::'、:::::::!';  '、 , リ      `’ ,., 〈へ ノ 17 |       ' :;::::::ヽハ`,.,.,         ハ:::ヽ. 18 |      ノ::::ヽ;:::::::;ゝ.、.,,___ ´_,,.イ::::;ハ::ノ    19 |      (::::::ノ::::::/ヽ,.! イ ,!_,ノ ´ソレ'´`ヾ!`      20 |        .)´`ヽノ`/´;   レムヽ,イ ;    ':, 21 |             !  i ',w,/   !   、 ,ノ 22 |           〈__,,.! 〈〉    `'rァ''こヘ 23 |             Y' i ,   i   `k'´ `\, 24 |            !/ '   ';    ヽ\  `; 25 |           _,.' /     ',     `ヽ`、ー-'´ 26 |         r'/           ヽ.  \`'ァ、 27 |        r'く_ /    i    ',    \ ,.イノ 28 |        `ー、>、_   _」_     ', __,,.イノ 29 |          ` ヽ こ ニ ン こ ハ こ 二ン__ノ-'´ 30 |            ! `'/  ̄ ̄|''´ /  31 |            |  ,'      !  ,' 32 |            `ー'    `ー' 33 | ``` 34 | 35 | # Author 36 | 37 | - SeenKid 38 | -------------------------------------------------------------------------------- /about-me/templates/other/apple/apple-logo.md: -------------------------------------------------------------------------------- 1 | # apple logo 2 | - note : Fixed, but use 3x \` With the apple to fix it (at the top and the bottom of the apple) 3 | - Note2 : The apple is not fully showed since the space is too little^^ 4 | ### Copy & Paste Markdown 5 | 6 | ``` 7 | ``` .:' 8 | __ :'__ 9 | .'`__`-'__``. 10 | :__________.-' 11 | :_________: 12 | :_________`-; 13 | `.__.-.__.' 14 | ``` 15 | 16 | # Author 17 | 18 | - SeenKid 19 | -------------------------------------------------------------------------------- /about-me/templates/other/creeper/creeper: -------------------------------------------------------------------------------- 1 | # Creeper 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 7 | ❇️ ❇️ ❇️ ❇️ ❇️ ❇️ ❇️ ❇️ 8 | 9 | ❇️ ⬛️ ⬛️ ❇️ ❇️ ⬛️ ⬛️ ❇️ 10 | 11 | ❇️ ⬛️ ⬛️ ❇️ ❇️ ⬛️ ⬛️ ❇️ 12 | 13 | ❇️ ❇️ ❇️ ⬛️ ⬛️ ❇️ ❇️ ❇️ 14 | 15 | ❇️ ❇️ ⬛️ ⬛️ ⬛️ ⬛️ ❇️ ❇️ 16 | 17 | ❇️ ❇️ ⬛️ ⬛️ ⬛️ ⬛️ ❇️ ❇️ 18 | 19 | ❇️ ❇️ ⬛️ ❇️ ❇️ ⬛️ ❇️ ❇️ 20 | 21 | or 22 | 23 | ██████████████████████████ 24 | █░░░▒▒▒░░░▒▒▒░░░▒▒▒░░░▒▒▒█ 25 | █░░░██████▒▒▒░░░██████▒▒▒█ 26 | █░░░██████▒▒▒░░░██████▒▒▒█ 27 | █▒▒▒██████░░░▒▒▒██████░░░█ 28 | █░░░▒▒▒░░░██████▒▒▒░░░▒▒▒█ 29 | █░░░▒▒▒░░░██████▒▒▒░░░▒▒▒█ 30 | █▒▒▒░░░████████████▒▒▒░░░█ 31 | █░░░▒▒▒████████████░░░▒▒▒█ 32 | █▒▒▒░░░███░░░▒▒▒███▒▒▒░░░█ 33 | █▒▒▒░░░███░░░▒▒▒███▒▒▒░░░█ 34 | █░░░▒▒▒░░░▒▒▒░░░▒▒▒░░░▒▒▒█ 35 | ██████████████████████████ 36 | 37 | ``` 38 | 39 | # Author 40 | 41 | - Seenkid -------------------------------------------------------------------------------- /about-me/templates/other/ez-ascii-art/ez-ascii-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/other/ez-ascii-art/ez-ascii-art.png -------------------------------------------------------------------------------- /about-me/templates/other/ez-ascii-art/ez.md: -------------------------------------------------------------------------------- 1 | # ez ascii art 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ███████╗███████╗ 7 | ██╔════╝╚════██║ 8 | █████╗░░░░███╔═╝ 9 | ██╔══╝░░██╔══╝░░ 10 | ███████╗███████╗ 11 | ╚══════╝╚══════╝ 12 | ``` 13 | 14 | # Author 15 | 16 | - SeenKid 17 | -------------------------------------------------------------------------------- /about-me/templates/other/heart/heart.md: -------------------------------------------------------------------------------- 1 | # ez ascii art 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🧷📎🧷📎 7 | 📎 🧷 8 | 📎 🧷 9 | ``` 10 | 11 | # Author 12 | 13 | - SeenKid 14 | -------------------------------------------------------------------------------- /about-me/templates/other/heart/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/other/heart/heart.png -------------------------------------------------------------------------------- /about-me/templates/other/lines/lines.md: -------------------------------------------------------------------------------- 1 | # Waves 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 。゚•┈୨♡୧┈•゚。 7 | 8 | ꧁༺ ༻꧂ 9 | 10 | 11 | ᐠ⸜ˎ_ˏ⸝^⸜ˎ_ˏ⸝^⸜ˎ_ˏ⸝ᐟ 12 | 13 | 14 | ᕁ᙮ᕁᕽᕽᕁ᙮᙮ᕁᕽᕽᕁ᙮ᕁ 15 | 16 | ︵‿୨🧡୧‿︵ 17 | 18 | ︵‿୨💚୧‿︵ 19 | 20 | ︵‿୨❤️୧‿︵ 21 | 22 | ︵‿୨💙୧‿︵ 23 | 24 | ڿڰۣ—🍥—ڿڰۣ 25 | ``` 26 | 27 | # Author 28 | 29 | - SeenKid 30 | -------------------------------------------------------------------------------- /about-me/templates/other/minesweeper/minesweeper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/other/minesweeper/minesweeper.gif -------------------------------------------------------------------------------- /about-me/templates/other/minesweeper/minesweeper.md: -------------------------------------------------------------------------------- 1 | # Minesweeper 2 | 3 | ### Preview 4 | 5 | 6 | 7 | ### Copy & Paste Markdown 8 | 9 | You can use [Discord Minesweeper Generator](https://jozsefsallai.github.io/discord-minesweeper-generator/) for generating a new grid 10 | 11 | ``` 12 | ||:one:||||:one:||||:one:||||:zero:|| 13 | ||:one:||||:boom:||||:one:||||:zero:|| 14 | ||:one:||||:two:||||:two:||||:one:|| 15 | ||:zero:||||:one:||||:boom:||||:one:|| 16 | ``` 17 | 18 | **Disclaimer** 19 | Due to characters limitation, only 4x4 grids work 20 | 21 | # Author 22 | 23 | - Slimey#0667 24 | -------------------------------------------------------------------------------- /about-me/templates/other/stars(sky)/stars.md: -------------------------------------------------------------------------------- 1 | # stars (sky) 2 | 3 | ### Copy & Paste Markdown 4 | ``` 5 | ✬ * ✸ * ' * . ✬ ' . * * ✫ ' * *' ✬ 6 | ``` 7 | 8 | # Author 9 | 10 | - SeenKid 11 | -------------------------------------------------------------------------------- /about-me/templates/other/stars(sky)/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/other/stars(sky)/stars.png -------------------------------------------------------------------------------- /about-me/templates/other/tetris/tetris.md: -------------------------------------------------------------------------------- 1 | # Tetris game 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | ⬛️⬛️🟨🟨🟨⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ 7 | ⬛️⬛️⬛️🟨⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ 8 | ⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️🟨 9 | 🟪🟪⬛️⬛️⬛️🟧⬛️⬛️⬛️⬛️⬛️⬛️🟨 10 | 🟩🟪🟪⬛️🟥🟧🟧⬛️⬛️🟦🟥🟥🟨 11 | 🟩🟩🟩🟥🟥🟥🟧🟦🟦🟦🟥🟥🟨 12 | ``` 13 | or 14 | 15 | ``` 16 | `⬛️⬛️🟨🟨🟨⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ 17 | ⬛️⬛️⬛️🟨⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ 18 | ⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️🟨 19 | 🟪🟪⬛️⬛️⬛️🟧⬛️⬛️⬛️⬛️⬛️⬛️🟨 20 | 🟩🟪🟪⬛️🟥🟧🟧⬛️⬛️🟦🟥🟥🟨 21 | 🟩🟩🟩🟥🟥🟥🟧🟦🟦🟦🟥🟥🟨 22 | ` 23 | ``` 24 | 25 | or 26 | 27 | ``` 28 | `⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ 29 | ⬛️⬛️🟨🟨🟨⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ 30 | ⬛️⬛️⬛️🟨⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️🟨 31 | 🟪🟪⬛️⬛️⬛️🟧⬛️⬛️⬛️⬛️⬛️⬛️🟨 32 | 🟩🟪🟪⬛️🟥🟧🟧⬛️⬛️🟦🟥🟥🟨 33 | 🟩🟩🟩🟥🟥🟥🟧🟦🟦🟦🟥🟥🟨 34 | ` 35 | ``` 36 | 37 | or 38 | 39 | ``` 40 | `⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ 41 | ⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️🟦🟦⬛️⬛️⬛️ 42 | ⬛️⬛️⬛️⬛️⬛️⬛️⬛️🟦🟦⬛️⬛️⬛️🟨 43 | 🟪🟪⬛️⬛️⬛️🟧⬛️⬛️⬛️⬛️⬛️⬛️🟨 44 | 🟩🟪🟪⬛️🟥🟧🟧⬛️⬛️🟦🟥🟥🟨 45 | 🟩🟩🟩🟥🟥🟥🟧🟦🟦🟦🟥🟥🟨 46 | ` 47 | ``` 48 | 49 | You can of course make your own design and change de position / colours of the forms. 50 | 51 | # Author 52 | 53 | - SeenKid 54 | -------------------------------------------------------------------------------- /about-me/templates/other/tetris/tetris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/other/tetris/tetris.png -------------------------------------------------------------------------------- /about-me/templates/other/tetris/tetris2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeenKid/discord-profile-customization/beb4951fee9c5a69e88ba4ebc679dea72ef8c04c/about-me/templates/other/tetris/tetris2.png -------------------------------------------------------------------------------- /about-me/templates/template-model.md: -------------------------------------------------------------------------------- 1 | # Template Title 2 | 3 | ### Copy & Paste Markdown 4 | 5 | ``` 6 | 🟥 🟧 🟨 🟩 🟦 🟪 ⬛️ ⬜️ 🟫 7 | 🔴 🟠 🟡 🟢 🔵 🟣 ⚫️ ⚪️ 🟤 8 | ``` 9 | 10 | # Author 11 | 12 | - Your name 13 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | # Discord Profile Customisation 14 | 15 | [Discord Profile customization](https://github.com/SeenKid/discord-profile-customization/wiki) - Un moyen simple d'avoir un beau profil discord ! 16 | - Official and easy wiki [On Gitbook](https://ac-1010.gitbook.io/discord-profile-customization/) 17 | - Wiki simple et officiel [On Gitbook](https://ac-1010.gitbook.io/discord-profile-customization/) 18 | 19 | # Important 20 | 21 | - Si vous voulez aider le projet, vous pouvez le forker ou directement faire une pull request ici. (Pas sûr de les accepter.) 22 | - Si vous voyez qu'il manque quelque chose, qu'un fichier est corrompu ou inutilisable, assurez-vous de créer un problème pour le signaler 23 | 24 | # Mon Discord 25 | 26 | Vous pouvez rejoindre mon discord ici : [SpaceWatch](https://discord.gg/YH8Qbjr2sJ). 27 | 28 | # [Accéder à Discord Profile customization](https://github.com/SeenKid/discord-profile-customization/) 29 | # [WIKI Discord Profile customization](https://github.com/SeenKid/discord-profile-customization/wiki) 30 | # [Documentation](https://ac-1010.gitbook.io/discord-profile-customization/) 31 | 32 | 33 | -------------------------------------------------------------------------------- /our_discord.md: -------------------------------------------------------------------------------- 1 | # SpaceWatch 2 | 3 | SpaceWatch is a community server based on Anime/mangas/films and gaming ! 4 | SpaceWatch est un serveur communautaire basé sur les Animés/mangas/films et le gaming ! 5 | 6 | - https://discord.gg/spacewatch 7 | - https://discord.gg/YH8Qbjr2sJ 8 | -------------------------------------------------------------------------------- /rich-presence/index.js: -------------------------------------------------------------------------------- 1 | var rpc = require("discord-rpc") 2 | const client = new rpc.Client({ 3 | transport: 'ipc' 4 | }) 5 | client.on('ready', () => { 6 | client.request('SET_ACTIVITY', { 7 | pid: process.pid, 8 | activity : { 9 | details : "🌹 Your Server Name 🌹", 10 | state: "🌴Some texts🌴", 11 | assets : { 12 | large_image : "YOUR_IMAGE_NAME", 13 | large_text : "🌹 Your Server Name 🌹" 14 | }, 15 | buttons : [{label : "Link1" , url : "Your Server Link"},{label : "link2", url : "rando stuff"}] 16 | } 17 | }) 18 | }) 19 | client.login({ 20 | clientId : "CLIENT_ID" 21 | }).catch(console.error); 22 | 23 | /* Remplace CLIENT_ID */ 24 | /* Remplace YOUR_IMAGE_NAME */ 25 | -------------------------------------------------------------------------------- /rich-presence/read.md: -------------------------------------------------------------------------------- 1 | # What is a rich presence ? 2 | A rich presence is something that shows to others users what you're playing on. For exemple, [check this](https://blenderartists.org/uploads/default/original/4X/1/e/8/1e8660e6601c8f4ecd9375948184b1d0d7ac4c78.png) 3 | 4 | # How to make this work ? 5 | 6 | ## Step 1 : Create a discord application 7 | - Go to [discord dev portal](https://discord.com/developers/applications) 8 | - create an app 9 | - go in "rich presence" and add images 10 | - Take application ID and replace it into the code 11 | 12 | ## Step 2 : Install NodeJS 13 | - Go to [NodeJS](https://nodejs.org/) and download / install the software 14 | - open nodejs console and go to your index.js directory (cd C:\Users...) 15 | - write in the console : npm install and install all the modules* 16 | 17 | Launch the app and there we go. 18 | 19 | 20 | ## Modules list : Only need to install discord-rpc and discord.js 21 | 22 | - @discordjs 23 | - abort-controller 24 | - asynckit 25 | - combined-stream 26 | - delayed-stream 27 | - discord.js 28 | - discord-rpc 29 | - event-target-shim 30 | - mime-db 31 | - mime-types 32 | - node-fetch 33 | - prism-media 34 | - setimmediate 35 | - tweetnacl 36 | - ws 37 | 38 | 39 | -------------------------------------------------------------------------------- /rich-presence/start.bat: -------------------------------------------------------------------------------- 1 | node index.js 2 | pause -------------------------------------------------------------------------------- /styling.md: -------------------------------------------------------------------------------- 1 | # Styling & formating for your about-me 2 | 3 | ## Default Styles 4 | 5 | ### Italics 6 | ``` 7 | *italics* or _italics_ 8 | ``` 9 | ### Underline 10 | ``` 11 | __underlined__ 12 | ``` 13 | 14 | ### Bold 15 | ``` 16 | **bold** 17 | ``` 18 | 19 | ### Bold Italics 20 | ``` 21 | ***bold italics*** 22 | ``` 23 | 24 | ### Strikethrough 25 | ``` 26 | ~~Strikethrough~~ 27 | ``` 28 | 29 | ### Code Blocks 30 | ``` 31 | `This is a code block` or ```This is a code block too``` 32 | ``` 33 | 34 | ### Spoiler 35 | ``` 36 | ||spoiler|| 37 | ``` 38 | 39 | ### Quote 40 | ``` 41 | > text 42 | ``` 43 | 44 | ### Slash Command (Only works in About-Me Section) 45 | ``` 46 | 47 | ``` 48 | 49 | ## Emoji 50 | 51 | - Unicode Characters 52 | - `🍉` 53 | - You can use [Smiley.cool emojilist](https://smiley.cool/emoji-list.php) to get emojies 54 | 55 | ## Timestamps 56 | 57 | You can use an [Unix Timestamp Converter](https://www.epochconverter.com/) for easy human readable date conversion 58 | 59 | | Type | Structure | Example | 60 | | - | - | - | 61 | | Unix Timestamp | | | 62 | | Unix Timestamp (Styled) | | | 63 | 64 | | Style | Output | Description | 65 | | - | - | - | 66 | | t | 16:20 | Short Time | 67 | | T | 16:20:30 | Long Time | 68 | | d | 20/04/2021 | Short Date | 69 | | D | 20 April 2021 | Long Date | 70 | | f * | 20 April 2021 16:20 | Short Date/Time | 71 | | F | Tuesday, 20 April 2021 16:20 | Long Date/Time | 72 | | R | 2 months ago | Relative Time | 73 | 74 | For example : 75 | - alive since == Alive since December 29, 2003 76 | - discord user since == discord user since October 29, 2017 77 | 78 | ## Texts & Formating 79 | - You can use [Fancy Text Generator](https://lingojam.com/FancyTextGenerator) to make cool police fonts 80 | - You can use [Cool Fancy Text Generator](https://coolsymbol.com/cool-fancy-text-generator.html) to make cool police fonts 81 | - You can use [Smiley.cool lines](https://smiley.cool/lines.php) to make lines 82 | - You can use [Smiley.cool waves](https://smiley.cool/waves.php) to make waves 83 | 84 | # Aknowledgements 85 | 86 | - [Discord](https://discord.com/developers/docs/intro) for their docs and text formatting examples 87 | - [Unix Timestamp Converter](https://www.epochconverter.com/) easy converter 88 | --------------------------------------------------------------------------------