fix(agsV2): allow messages to lock config
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-11-01 21:48:43 -04:00
parent fcb127ec84
commit 90717ba014
2 changed files with 5 additions and 1 deletions

View file

@ -10,6 +10,10 @@ export default async() => {
css: style, css: style,
instanceName: 'lock', instanceName: 'lock',
requestHandler(js, res) {
App.eval(js).then(res).catch(res);
},
main: () => { main: () => {
Lockscreen(); Lockscreen();
}, },

View file

@ -36,7 +36,7 @@
name = "lock"; name = "lock";
text = '' text = ''
export CONF="lock" export CONF="lock"
exec ${agsFull}/bin/ags --config ${fullConfPath} "$@" exec ${agsFull}/bin/ags --config ${fullConfPath} -i lock "$@"
''; '';
}; };