Jocelyn Falempe

Results 14 comments of Jocelyn Falempe

The command line option always takes precedence over the config file kmscon.conf. https://github.com/Aetf/kmscon/blob/develop/src/conf.c#L173 So you should modify the systemd service instead of kmscon.conf.

Hi, I used this small hack to do the same: ``` diff --git a/src/uterm_drm_shared.c b/src/uterm_drm_shared.c index 725aa4e..c7f0071 100644 --- a/src/uterm_drm_shared.c +++ b/src/uterm_drm_shared.c @@ -343,6 +343,7 @@ int uterm_drm_display_swap(struct uterm_display *disp,...

I've done some testing, and found some issue: When I use kmscon-launch-gui to start a simple mutter wayland compositor, and then VT-switching is broken, and I can't switch back to...

I've found a workaround to the VT-switching issue: ``` #!/bin/sh if [ "$#" -eq 0 ]; then echo "Usage: $0 argument" exit 1 fi # Store current tty number kms_tty=$(cat...

@sidstuff I've updated #118 that should fix the [[ issue with dash

Hi, thanks for finding the real root cause. It looks like it's a known issue of glib: https://gitlab.gnome.org/GNOME/glib/-/issues/2216 It might be fixed in latest version of glib: https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2408 But I've...

Font_pango is the only dependency that register a sigchild handler, so I think it's not a problem to put this workaround when loading font_pango. This allows to revert my workaround,...

Hi, I'm now helping @Aetf to review and merge pull request. I also plan to merge the develop branch to main soon, and tag a new release v10.0.0 And I've...

I think that make sense, there is already support to restart the login when it exits. The thing I'm wondering is if that should be optional or not.

Yes, I think using $TERM_SESSION_TYPE is good enough for now. Thanks a lot for integrating kmscon with uwsm.