mirror of
https://github.com/NovaGM/ModuleBuilder.git
synced 2024-08-15 00:23:33 +00:00
[Modules] Add PC Themes repo
This commit is contained in:
parent
1c25ad6c3c
commit
b984e3fc1e
2 changed files with 21 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
import nova from './nova.js';
|
||||
|
||||
import pcPlugins from './ports/plugins/pcPlugins.js';
|
||||
import pcThemes from './ports/pcThemes.js';
|
||||
|
||||
export default [
|
||||
{
|
||||
|
@ -11,6 +12,7 @@ export default [
|
|||
filename: 'nova',
|
||||
modules: nova,
|
||||
},
|
||||
|
||||
{
|
||||
meta: {
|
||||
name: 'Nova - PC Plugins',
|
||||
|
@ -19,4 +21,13 @@ export default [
|
|||
filename: 'pcplugins',
|
||||
modules: pcPlugins,
|
||||
},
|
||||
|
||||
{
|
||||
meta: {
|
||||
name: 'Nova - PC Themes',
|
||||
description: 'Powercord themes ported by NovaGM.'
|
||||
},
|
||||
filename: 'pcthemes',
|
||||
modules: pcThemes
|
||||
}
|
||||
];
|
||||
|
|
10
src/modules/ports/pcThemes.js
Normal file
10
src/modules/ports/pcThemes.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
export default [
|
||||
/*
|
||||
Notes for modules in this file:
|
||||
- No hash is provided as ported themes have no risk of RCE / etc
|
||||
*/
|
||||
|
||||
['keanuplayz/usrbg', '', '/powercord_manifest.json', 'pcTheme', {
|
||||
authors: ['717352467280691331']
|
||||
}]
|
||||
];
|
Loading…
Reference in a new issue