2fc4987c73
It is deprecated in favor of the regular GLib functions. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/718
38 lines
650 B
JavaScript
Executable File
38 lines
650 B
JavaScript
Executable File
#!/usr/bin/env gjs
|
|
|
|
imports.gi.versions.Gtk = '3.0';
|
|
|
|
const { GLib, Gtk } = imports.gi;
|
|
|
|
function nextTitle() {
|
|
let length = Math.random() * 20;
|
|
let str = '';
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
// 97 == 'a'
|
|
str += String.fromCharCode(97 + Math.random() * 26);
|
|
}
|
|
|
|
return str;
|
|
}
|
|
|
|
function main() {
|
|
Gtk.init(null);
|
|
|
|
let win = new Gtk.Window({ title: nextTitle() });
|
|
win.connect('destroy', () => {
|
|
Gtk.main_quit();
|
|
});
|
|
win.present();
|
|
|
|
GLib.timeout_add(GLib.PRIORITY_DEFAULT, 5000, function() {
|
|
win.title = nextTitle();
|
|
return true;
|
|
});
|
|
|
|
Gtk.main();
|
|
}
|
|
|
|
main();
|
|
|