1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 09:22:07 +02:00

vso: add page (#9730)

This commit is contained in:
K.B.Dharun Krishna 2023-03-12 02:20:27 +05:30 committed by GitHub
parent 380a396bf9
commit ad4af3a8c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

36
pages/linux/vso.md Normal file
View file

@ -0,0 +1,36 @@
# vso
> Utility to perform maintenance tasks on Vanilla OS.
> More information: <https://github.com/Vanilla-OS/vanilla-system-operator>.
- Trigger a system update immediately:
`sudo vso trigger-update --now`
- Check for package updates and list them:
`sudo vso update-check`
- Create an automated task upon an application's launch:
`vso create-task --name "{{string}}" --description "{{string}}" --{{command|on-condition-command}} "{{command}}" --on-process {{integer}}`
- Create an automated task to execute during boot:
`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --on-boot`
- Create an automated task to execute during specific battery states:
`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --{{on-low-battery|on-charge|on-battery|on-full-battery}}`
- Create an automated task which asks for a confirmation before execution:
`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --need-confirm`
- Create an automated task to execute during network connection or disconnection:
`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --{{on-network|on-disconnect}}`
- Delete an automated task:
`vso delete-task "{{task}}"`