All public logs

Jump to navigation Jump to search

Combined display of all available logs of 清冽之泉. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 22:57, 8 November 2024 Mwroot talk contribs created page Emacs 后台自动启动 (Created page with "<syntaxhighlight lang="bash" line> mkdir -p ~/.config/systemd/user nano ~/.config/systemd/user/emacs.service <pre> [Unit] Description=Emacs text editor as a daemon Documentation=info:emacs man:emacs(1) [Service] Type=forking ExecStart=/usr/bin/emacs --daemon ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)" Restart=on-failure [Install] WantedBy=default.target </pre> systemctl --user daemon-reload systemctl --user enable emacs.service systemctl --user start emacs.se...")