diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-10-28 11:01:03 +0900 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-11-07 18:15:00 +0900 |
commit | f4e8bc5f250bcf5f7daf5eb28b0b9f1131e4ac61 (patch) | |
tree | 032a69f85c7ccb8cd513b8b077105eea6803b09c | |
parent | 581720bc7468374a61bedc000b3a80d5ea2d9336 (diff) |
services: kmscon: Do not switch to vt at start.
* gnu/services/base.scm (kmscon-service-type): Add "--no-switchvt" to kmscon
command.
-rw-r--r-- | gnu/services/base.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 47c7d8bb27..5b30cedde0 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -2057,6 +2057,7 @@ This service is not part of @var{%base-services}." #~(list #$(file-append kmscon "/bin/kmscon") "--login" "--vt" #$virtual-terminal + "--no-switchvt" ;Prevent a switch to the virtual terminal. #$@(if hardware-acceleration? '("--hwaccel") '()) "--" #$login-program #$@login-arguments)) |