Quickly change the display configuration from the system menu. Multiple display configurations can be saved with custom names. A display configuration contains all display settings: resolution, scaling, orientation, position...
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
1. Please remove `test.js` since you are not using it: [EGO Review Guidelines: unnecessary files](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#don-t-include-unnecessary-files) 2. Please don't store any instance of objects in a property in the default class you are exporting (`prefs.js`) that won't allow the garbage collector to do its job after window close: [EGO Review Guidelines: Destroy](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#destroy-all-objects) If you don't want to move them to another class or make them local to their function, you can clean up on: ```js window.connect('close-request', () => { // clean up here }); ```