Tool to Show Github Actions status on Gnome Desktop. Check on github how to install. if you like it give me a star on github ! After updating, if you get an error, please relogin. This extension is not affiliated, funded, or in any way associated with Microsoft and GitHub. Versions below gnome 45 will no longer be supported :/
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
1. You shouldn't use spawn command when you can do that in gjs (line 42-45 extension.js). You can play sound form theme: ``` let player = global.display.get_sound_player(); player.play_from_theme('sound name', 'title', null); ``` or with file: ```js let player = global.display.get_sound_player(); let file = Gio.File.new_for_path('PATH TO THE FILE'); player.play_from_file(file, 'title', null); ``` 2. You also have `util.spawn()` and other variants instead of line 78 (utils.js): https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/ace8676ad069d04bc628e19e77997d15b6d80f67/js/misc/util.js#L73