Sam Vervaeck
Sam Vervaeck
Things I've learned so far: - The Linux ecosystem concerning tray icons is quite a mess. - GNOME by default doesn't support systray icons. You need [an extension](https://extensions.gnome.org/extension/615/appindicator-support/) - GTK3...
From what I have read, I think it's best to base an implementation of a systray on `tray-icon`, which is currently blocked by [this pull request](https://github.com/tauri-apps/tray-icon/pull/201) (and others). I've created...
`rcon` could follow [the classic structure defined by freedesktop.org](https://specifications.freedesktop.org/basedir-spec/latest/index.html#variables): `$XDG_HOME_DIR` and `$HOME/.config` if it does not exist, e.g. `$HOME/.config/rcon-cli/rcon.yaml` Many applications use the same file structure for their configuration files.
This is biting me, too. Is there any workaround? I'm trying to get this to run on Windows Server 2008 and Python 3.8.
The issue was that the paths inside this SDK are too long; that's not something we can control. -------- Original Message -------- On 1/16/25 00:27, budaesandrei wrote: > this still...
Does there happen to be a roadmap for this? I'd be very interested to see this happen.
Same problem here. ``` (waybar:5867): Gtk-CRITICAL **: 13:00:22.953: gtk_widget_set_accel_path: assertion 'GTK_IS_ACCEL_GROUP (accel_group)' failed (waybar:5867): Gtk-CRITICAL **: 13:00:22.953: gtk_widget_add_accelerator: assertion 'GTK_IS_ACCEL_GROUP (accel_group)' failed (waybar:5867): Gtk-CRITICAL **: 13:00:22.953: gtk_widget_set_accel_path: assertion 'GTK_IS_ACCEL_GROUP (accel_group)'...
I can confirm that the solution posted by @cuihtlauac worked. Might be worthwhile to add it to the docs?
I've found [this](https://github.com/hangj/prost-stream/blob/1b814f5559301850e592f696f40d350484175eab/src/stream.rs#L53-L84), which helped me with implementing my own message serializer/deserializer. AFAICT, Google's protocol buffers are not aware of streaming, so you need to manually prefix the length of...
On it, will come back at you tomorrow.