all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Has anyone ever used kmscon successfully
@ 2018-12-16  5:54 John Soo
  2018-12-16 10:33 ` Mathieu Othacehe
  0 siblings, 1 reply; 4+ messages in thread
From: John Soo @ 2018-12-16  5:54 UTC (permalink / raw)
  To: help-guix

[-- Attachment #1: Type: text/plain, Size: 381 bytes --]

Hi guix,

I’m curious about terminal alternatives so I was pretty excited to see kmscon as a service. What do I need to do aside from add the service? All I see with the following is blinking cursor on tty8:

(modify-services
             %desktop-services
             ('kmscon c => (kmscon-configuration (virtual-terminal "tty8"))))))

Thank you for everything,

John

[-- Attachment #2: Type: text/html, Size: 2591 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Has anyone ever used kmscon successfully
  2018-12-16  5:54 Has anyone ever used kmscon successfully John Soo
@ 2018-12-16 10:33 ` Mathieu Othacehe
  2018-12-16 13:13   ` John Soo
  0 siblings, 1 reply; 4+ messages in thread
From: Mathieu Othacehe @ 2018-12-16 10:33 UTC (permalink / raw)
  To: John Soo; +Cc: help-guix


Hi John,

I built the new GuixSD installer upon kmscon. It works pretty well and
is a good alternative to raw linux VT's in my opinion.

> (modify-services
>              %desktop-services
>              ('kmscon c => (kmscon-configuration (virtual-terminal "tty8"))))))

modify-services implies that there's already a kmscon service in
%desktop-services, which is not the case. Plus 'kmscon is not a proper
service type.

You might prefer to write something like (not tested):

--8<---------------cut here---------------start------------->8---
(cons* (service kmscon-service-type
                  (kmscon-configuration
                    (virtual-terminal "tty8")))
        %desktop-services)
--8<---------------cut here---------------end--------------->8---

Mathieu

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Has anyone ever used kmscon successfully
  2018-12-16 10:33 ` Mathieu Othacehe
@ 2018-12-16 13:13   ` John Soo
  2018-12-17  4:26     ` Mathieu Othacehe
  0 siblings, 1 reply; 4+ messages in thread
From: John Soo @ 2018-12-16 13:13 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: help-guix

Thanks!

 I have a lot to learn about services!  Seems nice so far.  Do you know if there will be any more development on kmscon or is it only in maintenance?

Works like a charm.

- John

> On Dec 16, 2018, at 2:33 AM, Mathieu Othacehe <m.othacehe@gmail.com> wrote:
> 
> 
> Hi John,
> 
> I built the new GuixSD installer upon kmscon. It works pretty well and
> is a good alternative to raw linux VT's in my opinion.
> 
>> (modify-services
>>             %desktop-services
>>             ('kmscon c => (kmscon-configuration (virtual-terminal "tty8"))))))
> 
> modify-services implies that there's already a kmscon service in
> %desktop-services, which is not the case. Plus 'kmscon is not a proper
> service type.
> 
> You might prefer to write something like (not tested):
> 
> --8<---------------cut here---------------start------------->8---
> (cons* (service kmscon-service-type
>                  (kmscon-configuration
>                    (virtual-terminal "tty8")))
>        %desktop-services)
> --8<---------------cut here---------------end--------------->8---
> 
> Mathieu

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Has anyone ever used kmscon successfully
  2018-12-16 13:13   ` John Soo
@ 2018-12-17  4:26     ` Mathieu Othacehe
  0 siblings, 0 replies; 4+ messages in thread
From: Mathieu Othacehe @ 2018-12-17  4:26 UTC (permalink / raw)
  To: John Soo; +Cc: help-guix


Hello John,

>  I have a lot to learn about services!  Seems nice so far.  Do you know if there will be any more development on kmscon or is it only in maintenance?

The original author David Herrmann seems to have stop kmscon
developments in 2014. Guix now uses the forked kmscon package hosted at
https://github.com/Aetf/kmscon, which contains a few fixes and
improvements.

>
> Works like a charm.

Good to know :)

Mathieu

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-12-17  4:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-16  5:54 Has anyone ever used kmscon successfully John Soo
2018-12-16 10:33 ` Mathieu Othacehe
2018-12-16 13:13   ` John Soo
2018-12-17  4:26     ` Mathieu Othacehe

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.