Wanda the fish is back with her fortune telling powers! Click Wanda to see your fortune and again for it to disappear. As of Gnome Shell 45: You can also right click to see fortune in smaller pop up. Fortune in smaller pop up will stay the same until it is clicked on. If you receive the error: 'Sorry, no wisdom for you today' be sure to install 'fortune-mod'.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-X-002 warning
extensions should not use synchronous subprocess APIs in shell code
Shell code should avoid synchronous subprocess APIs like `GLib.spawn_command_line_sync()` and `GLib.spawn_sync()`.
extension.js:22
GLib.spawn_command_line_sync('fortune')
EGO-L-003 warning
signals connected by extension should be disconnected in disable()
Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.
extension.js:59
this._indicator.connect('button-press-event', (actor, event) => {
if (event.get_button() === 1) { // 1 is Left Click
this.showDialog(wanda);
return Clutter.EVENT_STOP;
}
else if (event.get_button() === 3) { // 3 is Right Cli
extension.js:103
dialog.connect('button-press-event', (actor, event) => {
dialog.close();
})