diff --git a/misc/README.md b/misc/README.md index 2d393d0..d33fa7e 100644 --- a/misc/README.md +++ b/misc/README.md @@ -1,12 +1,13 @@ # System services -Somne system integrations, you may want to edit the download file and adjust your URL before applying it directly on your system/cluster +Somne system integrations, make sure to edit the downloaded file and adjust the target URL before applying it directly on your system/cluster ## macOS ```shell mkdir -p $HOME/Library/LaunchAgents/ curl -L https://raw.githubusercontent.com/chmouel/gosmee/main/misc/com.chmouel.gosmee.plist -o $HOME/Library/LaunchAgents/com.chmouel.gosmee.plist +$EDITOR $HOME/Library/LaunchAgents/com.chmouel.gosmee.plist launchctl load -w ~/Library/LaunchAgents/com.chmouel.gosmee.plist ``` @@ -16,11 +17,14 @@ launchctl load -w ~/Library/LaunchAgents/com.chmouel.gosmee.plist ```shell mkdir -p $HOME/.config/systemd/user curl -L https://raw.githubusercontent.com/chmouel/gosmee/main/misc/gosmee.service -o $HOME/.config/systemd/user/gosmee.service +$EDITOR $HOME/.config/systemd/user/gosmee.service systemctl --user enable --now gosmee ``` ## Kubernetes ```shell -kubectl apply -f https://raw.githubusercontent.com/chmouel/gosmee/main/misc/kubernetes-deployment.yaml +curl -LO https://raw.githubusercontent.com/chmouel/gosmee/main/misc/kubernetes-deployment.yaml +$EDITOR kubernetes-deployment.yaml +kubectl apply -f kubernetes-deployment.yaml ```