-
-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
applauncher broken #18
Comments
A reboot seemed to have fixed the problem with audio, dunno what that was about. |
what is the output of this script? imports.gi.versions.Gtk = '3.0';
const app = new imports.gi.Gtk.Application();
app.connect('activate', () => {
const list = imports.gi.Gio.AppInfo.get_all()
.filter(app => app.should_show())
.map(app =>
typeof app.get_description() !== 'string' &&
typeof app.get_description() !== 'object' ||
typeof app.get_name() !== 'string' ||
typeof app.get_executable() !== 'string' ||
typeof app.get_id() !== 'string'
? app : null
)
.filter(app => app);
list.length > 0
? list.forEach(app => print(app.get_name()))
: print('ok');
});
app.run(null); # run with
gjs file.js |
It just outputs "ok" |
weird, whenever you try to search this error pops up? |
This commit introduces the bug for me, before this it works as expected |
oh yeah, that was a breaking change, if you are using my configs, make sure you pull those too Aylur/dotfiles@46843e5 was the commit addressing it |
that fixed it, thanks |
I am on the latest build and I seem to be having a few issues:
Audio is completely broken, no audio at all and the widgets are missingI get this error on trying to increase/decrease volume:
Error when trying to search something:
The text was updated successfully, but these errors were encountered: