Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

sway reload breaks kanshi config #43

Open
itapai opened this issue Jul 27, 2019 · 14 comments
Open

sway reload breaks kanshi config #43

itapai opened this issue Jul 27, 2019 · 14 comments

Comments

@itapai
Copy link

itapai commented Jul 27, 2019

This is my config

{
    output eDP-1 enable mode 1920x1080
}
{
    output eDP-1 disable
    output "Dell Inc. DELL U3415W F1T1W88R0A1L" enable mode 3440x1440
}

On sway start, profiles are applied correctly.
When i reload sway (mod+shift+r), both profiles get applied, resulting in both displays being turned on.
Kanshi is started via sway config (exec kanshi). If I rerun kanshi from the terminal, profiles gets applied correcly.

Is kanshi meant to be started this way (via sway config)?

Running it on archlinux via aur packages (kanshi-git, sway-git, wlroots-git, ... the whole shabang )

@emersion
Copy link
Owner

This is kind of a sway bug. It should keep the configuration on reload. Or request that kanshi sends the configuration again? I'm not sure how it could do this.

@layus
Copy link
Contributor

layus commented Aug 9, 2019

Hi,

I have investigated this and it appears that sway sends the right information, but kanshi does not react to that, because of the check below. Removing that check makes kanshi react to the done() event after the changes induced by the reload have been sent.

This happens because kanshi never changes its current profile pointer. The struct is updated in place, and the check fails.

diff --git a/main.c b/main.c
index c25e2bb..768e381 100644
--- a/main.c
+++ b/main.c
@@ -118,9 +133,7 @@ static struct kanshi_mode *match_mode(struct kanshi_head *head,
 static void apply_profile(struct kanshi_state *state,
                struct kanshi_profile *profile,
                struct kanshi_profile_output **matches) {
-       if (state->current_profile == profile) {
-               return;
-       }
+       // TODO: Skip if nothing changed.
 
        struct kanshi_pending_profile *pending = calloc(1, sizeof(*pending));
        pending->state = state;

@layus
Copy link
Contributor

layus commented Aug 9, 2019

Well, I guess it depends on what we want. Do we want kanshi to apply configs only when a new config matches, or do we want it to enforce the given config all the time ?

If we are to solve this in sway (keep the current config), then why is sway not able to collect it from the state of the monitor themselves ?

@MichaelAquilina
Copy link
Contributor

This issue seems to break my current configuration. Right now I have the following in my sway config

exec kanshi

as soon as I reload sway as mentioned above - the wrong configuration seems to be picked up. Is there a workaround for this or is reloading sway's config currently broken?

@layus
Copy link
Contributor

layus commented Sep 3, 2019

Using kanshi + sway relaod is broken. You can call kanshi (and kill it afterward ) after each sway reload to force update it's config.

Seems like a good fix would make sway keep outputs config on reload (but sway has output directives that could have changed and need to be re-applied).

@layus
Copy link
Contributor

layus commented Sep 16, 2019

Found a very effective solution, that may not prove as temorary as expected (hear: It could become the official solution).

exec_always pkill kanshi; exec kanshi

It ensures a full restart (reload) of kanshi on every sway reload. The second exec is to avoid a leftover sh -c invocation. It is not a sway command but part of the pkill kanshi; exec kanshi shell script.

Expect some flickering

@layus
Copy link
Contributor

layus commented Sep 16, 2019

The same technique can be used to launch swayidle (in case of parameters change) and waybar (if you use it).

@itapai
Copy link
Author

itapai commented Sep 18, 2019

@layus when i reload and if I have an external display connected, all my windows close. do you experience this as well? if i dont have an external display connected, it works fine

@MichaelAquilina
Copy link
Contributor

@itapai I have also experienced this issue several times. I've had to stop using kanshi until I can figure a way to work round it / fix the issue

@emersion
Copy link
Owner

emersion commented Sep 18, 2019

when i reload and if I have an external display connected, all my windows close

This should fix it: swaywm/wlroots#1765

@emersion
Copy link
Owner

emersion commented Nov 5, 2019

Sway could destroy all output-management heads and re-add them to ask clients to configure them again.

@fourstepper
Copy link

Is the best solution to this still exec_always pkill kanshi; exec kanshi ?

@danjclegg
Copy link

@fourstepper I just very successfully applied that sway line from @layus and can't find a better answer elsewhere. I wonder if this line should be put in some kind of doc? I had a hard time finding out how to integrate kanshi with sway due to the reload issue. Particularly I think pywal was causing a reload of sway config right away so kanshi wouldn't work with a simple exec in sway config even on startup. With the exec_always kanshi survives the sway reconfig that pywal causes when loaded in sway config at startup.
Thanks!

@yaymukund
Copy link

If you use systemd to run kanshi as a user service, you can do:

exec_always "systemctl --user restart kanshi.service"

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants