This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: CC0-1.0 | |
| /* | |
| * Linux systems can have multiple sessions logged in at once. | |
| * For example, siblings with separate accounts on a family laptop | |
| * can use the "switch user" function to share access without | |
| * closing all their programs every time. | |
| * | |
| * Systemd provides user services to handle services that run for | |
| * each user, but this can be a problem for services that should only | |
| * run for the current user. For example, audio notifications |