Sakith B.
Sakith B.
That's interesting, might be related to the broken chromium mpris implementation. I'll have to check it out. Does the extension behave correctly with chromium browsers? Like does the extension keep...
Did this happen again or are you able to recreate this issue?
I had the same issue. My projects folder is symlinked from `/mnt/projects` to `~/projects`, and I had `auto_session_allowed_dirs` set to `{ "~/projects/*" }`. Changing it to `{ "/mnt/projects/*" }` worked...
It works now!
I think implementing easy navigation by keyboard is a good idea. I'll have to think about it first (choosing appropriate shortcuts etc).
For anyone wanting to have the docs popup until this pr is merged ```lua vim.api.nvim_create_autocmd("CompleteChanged", { callback = function() local event = vim.v.event if not event or not event.completed_item then...
Streams do not support the pause method, but can be stopped via the [stop](https://specifications.freedesktop.org/mpris/latest/Player_Interface.html#Method:Stop) method, which is what the default media notification uses. We have two options: 1. Add a...
The crash logs point to this line, https://github.com/sakithb/media-controls/blob/eeb83ab018924850d22a444de6b457f119a075e4/src/helpers/shell/PanelButton.ts#L870 I don't have any idea what is going wrong here, but I will investigate later.
> I do not see any crash logs here ? But seems the device at index "tapAction.nTouchPoints - 1" is not there ? I have still not even an idea...
Seems like that isn't the issue. I tried by clamping the no of points to always be 0 or greater. Even after commenting out that code, it still crashes. My...