Aleksei Bavshin

Results 27 comments of Aleksei Bavshin

> This should fix it :+1:, can confirm that it works with the winit patch.

AFAIR, my last attempt on a similar feature for foot-server was in vain. Systemd wasn't flexible enough to use dependencies based on the environment variable, and generators - an alternative...

So... ```diff export XDG_CURRENT_DESKTOP=sway export XDG_SESSION_TYPE=wayland VARIABLES="DISPLAY I3SOCK SWAYSOCK WAYLAND_DISPLAY XDG_CURRENT_DESKTOP XDG_SESSION_TYPE" -SESSION_TARGET="sway-session.target" +SESSION_TARGET="sway-session@$WAYLAND_DISPLAY.target" WITH_CLEANUP="" print_usage() { ``` ```sh $ systemctl --user cat [email protected] # /usr/lib/systemd/user/[email protected] [Unit] Description=sway session (display:...

See #15 for the final solution. I'm already hesitant about the idea. `wayland-session@$WAYLAND_DISPLAY.target` in systemd would be much better choice for a generic wayland application as it could be added...

Yep, I'm aware of that and #15 exists. But the problem is that we'd want a generic `[email protected]` for applications like `foot` instead of an environment-specific `[email protected]`. As `[email protected]` clearly...

This doesn't work if the `docker` command is a podman wrapper (`podman-docker` package in many Linux distributions). ``` $ /usr/bin/docker version Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet...

Hm. [`ALabel::getState`](https://github.com/Alexays/Waybar/blob/91b79a2e9e315748f50a96603b10a960d36487ff/src/ALabel.cpp#L135) should be already doing that.

``` ../src/modules/sway/workspaces.cpp:250:20: error: no member named 'any_of' in namespace 'std::ranges' if (std::ranges::any_of(node["nodes"], [&](auto const &e) { return hasFlag(e, flag); })) { ~~~~~~~~~~~~~^ ``` The CI runs FreeBSD 13.2 (still supported)...

First of all, I'm not really sure that's a good idea right now. The approach taken in gtk4-layer-shell, MITM shim library that patches Wayland protocol messages to replace xdg-shell with...

> LGTM, but I wonder whether this is really useful without using this functionality by default. > > Currently if something touches the configuration to set `Theme=`, it can already...