systemd Manager is a Visual Studio Code extension designed to help users manage and maintain the state of systemd services and units on their host systems. This extension provides a user-friendly interface to interact with systemd, allowing for easy management of services and units directly from the VSCode environment.
On the marketplace, search for systemd universal manager
or us the followings links:
To add this to a devcontainer, you add the following to the devcontainer.json
"customizations": {
"vscode": {
"extensions": [
...,
"gbraad.systemd-universal-manager"
]
}
}
@gbraad |