blob: 4a244264f092db93eaeff6c69ee819b25fa39d2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* exported main */
const { DBusService } = imports.dbusService;
const { ScreencastService } = imports.screencastService;
function main() {
const service = new DBusService(
'org.gnome.Shell.Screencast',
new ScreencastService());
service.run();
}
|