mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:17:35 +00:00
Help+Base: Add help://man URLs for links between man pages
The URLs of the form `help://man/<section>/<page>` link to another help page inside the help application. All previous relative page links are replaced by this new form. This doesn't change any behavior but it looks much nicer :^) Note that man doesn't handle these new links, but the previous relative links didn't work either.
This commit is contained in:
parent
becf74097e
commit
98c0c5e9e6
73 changed files with 177 additions and 165 deletions
|
@ -28,7 +28,7 @@ describing how to launch and manage this service.
|
|||
* `SocketPermissions` - comma-separated list of (octal) file system permissions for the socket file. The default permissions are 0600. If the number of socket permissions defined is less than the number of sockets defined, then the last defined permission will be used for the remainder of the items in `Socket`.
|
||||
* `User` - a name of the user to run the service as. This impacts what UID, GID (and extra GIDs) the service processes have. By default, services are run as root.
|
||||
* `WorkingDirectory` - the working directory in which the service is spawned. By default, services are spawned in the root (`"/"`) directory.
|
||||
* `SystemModes` - a comma-separated list of system modes in which the service should be enabled. By default, services are only enabled in the "graphical" mode. The current system mode is read from the [kernel command line](../man7/boot_parameters.md#options), and is assumed to be "graphical" if not specified there.
|
||||
* `SystemModes` - a comma-separated list of system modes in which the service should be enabled. By default, services are only enabled in the "graphical" mode. The current system mode is read from the [kernel command line](help://man/7/boot_parameters#options), and is assumed to be "graphical" if not specified there.
|
||||
* `Environment` - a space-separated list of "variable=value" pairs to set in the environment for the service.
|
||||
* `MultiInstance` - whether multiple instances of the service can be running simultaneously.
|
||||
* `AcceptSocketConnections` - whether SystemServer should accept connections on the socket, and spawn an instance of the service for each client connection.
|
||||
|
@ -90,4 +90,4 @@ User=window
|
|||
|
||||
## See also
|
||||
|
||||
* [`SystemServer`(7)](../man7/SystemServer.md)
|
||||
* [`SystemServer`(7)](help://man/7/SystemServer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue