File: config_tweaks.patch

package info (click to toggle)
greetd 0.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 436 kB
  • sloc: makefile: 49; sh: 19
file content (33 lines) | stat: -rw-r--r-- 1,053 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Last-Update: 2022-07-12
Forwarded: not-needed
Author: Marc Dequènes (Duck) <Duck@DuckCorp.org>
Description: Tweaks:
 - Use tty7 as usual on Debian
 - change the username and use an underscore
 - add configuration example for wlgreet
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/config.toml
+++ b/config.toml
@@ -1,16 +1,18 @@
 [terminal]
 # The VT to run the greeter on. Can be "next", "current" or a number
 # designating the VT.
-vt = 1
+vt = 7
 
 # The default session, also known as the greeter.
 [default_session]
 
 # `agreety` is the bundled agetty/login-lookalike. You can replace `/bin/sh`
 # with whatever you want started, such as `sway`.
-command = "agreety --cmd /bin/sh"
+command = "/usr/sbin/agreety --cmd /bin/sh"
+# if using wlgreet
+#command = "sway --config /etc/greetd/sway-config"
 
 # The user to run the command as. The privileges this user must have depends
 # on the greeter. A graphical greeter may for example require the user to be
 # in the `video` group.
-user = "greeter"
+user = "_greetd"