[gnome] Update extensions

This commit is contained in:
2026-06-10 11:03:09 -04:00
parent 20fc1e4e75
commit 6c973853c6
394 changed files with 12513 additions and 1340 deletions

View File

@ -9,7 +9,11 @@ export const IS_IN_PREFERENCES = typeof global === 'undefined';
export async function import_in_shell_only(module) {
if (IS_IN_PREFERENCES)
return null;
return (await import(module)).default;
try {
return (await import(module)).default;
} catch (e) {
return null;
}
}
// In use for the effects, to prevent boilerplate code