turns out i had to set overwrite: true because artix grub ships its own damn /etc/default/grub. also removed the konsole jumpscare during install. docs are now less cringe and more wikipedia.

This commit is contained in:
2026-07-21 17:48:06 +02:00
parent 2d6faa8422
commit 729da20717
17 changed files with 152 additions and 108 deletions
+3 -11
View File
@@ -104,19 +104,11 @@ s6-svc -u /run/service/sshd
| Complexity | Low | Medium-High |
| Flexibility | Moderate | Very high (modular) |
## Should you use it?
## When to use S6
Pick S6 if:
- You want the most powerful non-systemd init
- You need dependency-based service management
- You like the idea of a compiled service database
- You value process supervision and auto-restart
- You're comfortable with a steeper learning curve
S6 is suitable for advanced users who want full process supervision with dependency-based service management and per-service logging. It offers the most features of any non-systemd init but has a steeper learning curve than OpenRC or Runit.
Stick with OpenRC if:
- You want something simple and well-documented
- You need shell-script-based services you can debug easily
- You don't need process supervision or dependency resolution
Users who need supervision, logging, and dependency resolution without systemd will find S6 the most capable option. Users who prefer simplicity may prefer OpenRC or Dinit.
## Learn more