├── .github └── workflows │ └── build.yml ├── .gitignore ├── Aliucord.zip ├── AliucordRenamer ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── AliucordRenamer │ ├── AliucordRenamer.kt │ └── PluginSettings.kt ├── DMTabs ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── dmtabs │ └── dmtabs.kt ├── Discord Startup Sound HQ.mp3 ├── FanCopypasta ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── FanCopypasta │ └── FanCopypasta.kt ├── ForceAliucordZip ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── forcealiucordzip │ └── slashfix.kt ├── ForceSlashCommandsFixNOW ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── forceslashcommandsfixnow │ └── slashfix.kt ├── Hispanizador ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── hispanizador │ └── spanishbutton.kt ├── NoticeSound ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── NoticeSound │ ├── NoticeSound.kt │ └── PluginSettings.kt ├── POC-DONTINSTALL ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── explode │ └── funny.kt ├── README.md ├── Rule34 ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── Rule34 │ └── Rule34.kt ├── SafeBooru ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── SafeBooru │ └── SafeBooru.kt ├── StartupSound ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── StartupSound │ ├── PluginSettings.kt │ └── StartupSound.kt ├── UserBG ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── userbg │ ├── PluginSettings.kt │ ├── README.md │ ├── UserBG.kt │ └── model │ ├── AbstractDatabase.kt │ └── USRBG.kt ├── UserPFP ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── om │ └── ega │ └── sunkey │ └── userpfp │ ├── PluginSettings.kt │ ├── README.md │ ├── UserPFP.kt │ └── model │ ├── APFP.kt │ └── AbstractDatabase.kt ├── git.ignore ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ping.mp3 └── settings.gradle.kts /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/.gitignore -------------------------------------------------------------------------------- /Aliucord.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/Aliucord.zip -------------------------------------------------------------------------------- /AliucordRenamer/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/AliucordRenamer/build.gradle.kts -------------------------------------------------------------------------------- /AliucordRenamer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AliucordRenamer/src/main/kotlin/om/ega/sunkey/AliucordRenamer/AliucordRenamer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/AliucordRenamer/src/main/kotlin/om/ega/sunkey/AliucordRenamer/AliucordRenamer.kt -------------------------------------------------------------------------------- /AliucordRenamer/src/main/kotlin/om/ega/sunkey/AliucordRenamer/PluginSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/AliucordRenamer/src/main/kotlin/om/ega/sunkey/AliucordRenamer/PluginSettings.kt -------------------------------------------------------------------------------- /DMTabs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/DMTabs/build.gradle.kts -------------------------------------------------------------------------------- /DMTabs/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /DMTabs/src/main/kotlin/om/ega/sunkey/dmtabs/dmtabs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/DMTabs/src/main/kotlin/om/ega/sunkey/dmtabs/dmtabs.kt -------------------------------------------------------------------------------- /Discord Startup Sound HQ.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/Discord Startup Sound HQ.mp3 -------------------------------------------------------------------------------- /FanCopypasta/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/FanCopypasta/build.gradle.kts -------------------------------------------------------------------------------- /FanCopypasta/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FanCopypasta/src/main/kotlin/om/ega/sunkey/FanCopypasta/FanCopypasta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/FanCopypasta/src/main/kotlin/om/ega/sunkey/FanCopypasta/FanCopypasta.kt -------------------------------------------------------------------------------- /ForceAliucordZip/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/ForceAliucordZip/build.gradle.kts -------------------------------------------------------------------------------- /ForceAliucordZip/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ForceAliucordZip/src/main/kotlin/om/ega/sunkey/forcealiucordzip/slashfix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/ForceAliucordZip/src/main/kotlin/om/ega/sunkey/forcealiucordzip/slashfix.kt -------------------------------------------------------------------------------- /ForceSlashCommandsFixNOW/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/ForceSlashCommandsFixNOW/build.gradle.kts -------------------------------------------------------------------------------- /ForceSlashCommandsFixNOW/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ForceSlashCommandsFixNOW/src/main/kotlin/om/ega/sunkey/forceslashcommandsfixnow/slashfix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/ForceSlashCommandsFixNOW/src/main/kotlin/om/ega/sunkey/forceslashcommandsfixnow/slashfix.kt -------------------------------------------------------------------------------- /Hispanizador/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/Hispanizador/build.gradle.kts -------------------------------------------------------------------------------- /Hispanizador/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Hispanizador/src/main/kotlin/om/ega/sunkey/hispanizador/spanishbutton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/Hispanizador/src/main/kotlin/om/ega/sunkey/hispanizador/spanishbutton.kt -------------------------------------------------------------------------------- /NoticeSound/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/NoticeSound/build.gradle.kts -------------------------------------------------------------------------------- /NoticeSound/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /NoticeSound/src/main/kotlin/om/ega/sunkey/NoticeSound/NoticeSound.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/NoticeSound/src/main/kotlin/om/ega/sunkey/NoticeSound/NoticeSound.kt -------------------------------------------------------------------------------- /NoticeSound/src/main/kotlin/om/ega/sunkey/NoticeSound/PluginSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/NoticeSound/src/main/kotlin/om/ega/sunkey/NoticeSound/PluginSettings.kt -------------------------------------------------------------------------------- /POC-DONTINSTALL/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/POC-DONTINSTALL/build.gradle.kts -------------------------------------------------------------------------------- /POC-DONTINSTALL/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /POC-DONTINSTALL/src/main/kotlin/om/ega/sunkey/explode/funny.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/POC-DONTINSTALL/src/main/kotlin/om/ega/sunkey/explode/funny.kt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/README.md -------------------------------------------------------------------------------- /Rule34/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/Rule34/build.gradle.kts -------------------------------------------------------------------------------- /Rule34/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Rule34/src/main/kotlin/om/ega/sunkey/Rule34/Rule34.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/Rule34/src/main/kotlin/om/ega/sunkey/Rule34/Rule34.kt -------------------------------------------------------------------------------- /SafeBooru/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/SafeBooru/build.gradle.kts -------------------------------------------------------------------------------- /SafeBooru/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SafeBooru/src/main/kotlin/om/ega/sunkey/SafeBooru/SafeBooru.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/SafeBooru/src/main/kotlin/om/ega/sunkey/SafeBooru/SafeBooru.kt -------------------------------------------------------------------------------- /StartupSound/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/StartupSound/build.gradle.kts -------------------------------------------------------------------------------- /StartupSound/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /StartupSound/src/main/kotlin/om/ega/sunkey/StartupSound/PluginSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/StartupSound/src/main/kotlin/om/ega/sunkey/StartupSound/PluginSettings.kt -------------------------------------------------------------------------------- /StartupSound/src/main/kotlin/om/ega/sunkey/StartupSound/StartupSound.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/StartupSound/src/main/kotlin/om/ega/sunkey/StartupSound/StartupSound.kt -------------------------------------------------------------------------------- /UserBG/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserBG/build.gradle.kts -------------------------------------------------------------------------------- /UserBG/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UserBG/src/main/kotlin/om/ega/sunkey/userbg/PluginSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserBG/src/main/kotlin/om/ega/sunkey/userbg/PluginSettings.kt -------------------------------------------------------------------------------- /UserBG/src/main/kotlin/om/ega/sunkey/userbg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserBG/src/main/kotlin/om/ega/sunkey/userbg/README.md -------------------------------------------------------------------------------- /UserBG/src/main/kotlin/om/ega/sunkey/userbg/UserBG.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserBG/src/main/kotlin/om/ega/sunkey/userbg/UserBG.kt -------------------------------------------------------------------------------- /UserBG/src/main/kotlin/om/ega/sunkey/userbg/model/AbstractDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserBG/src/main/kotlin/om/ega/sunkey/userbg/model/AbstractDatabase.kt -------------------------------------------------------------------------------- /UserBG/src/main/kotlin/om/ega/sunkey/userbg/model/USRBG.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserBG/src/main/kotlin/om/ega/sunkey/userbg/model/USRBG.kt -------------------------------------------------------------------------------- /UserPFP/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserPFP/build.gradle.kts -------------------------------------------------------------------------------- /UserPFP/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/PluginSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/PluginSettings.kt -------------------------------------------------------------------------------- /UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/README.md -------------------------------------------------------------------------------- /UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/UserPFP.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/UserPFP.kt -------------------------------------------------------------------------------- /UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/model/APFP.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/model/APFP.kt -------------------------------------------------------------------------------- /UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/model/AbstractDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/UserPFP/src/main/kotlin/om/ega/sunkey/userpfp/model/AbstractDatabase.kt -------------------------------------------------------------------------------- /git.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/git.ignore -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ping.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/ping.mp3 -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmegaSunkey/awesomeplugins/HEAD/settings.gradle.kts --------------------------------------------------------------------------------