LinuxCommandLibrary

vso

Utility to perform maintenance tasks on Vanilla OS.

TLDR

Trigger a system update immediately

$ sudo vso trigger-update --now
copy


Check for package updates and list them
$ sudo vso update-check
copy


Create an automated task upon an application's launch
$ vso create-task --name "[string]" --description "[string]" --[command|on-condition-command] "[command]" --on-process [integer]
copy


Create an automated task to execute during boot
$ vso create-task --name "[string]" --description "[string]" --command "[command]" --on-boot
copy


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]
copy


Create an automated task which asks for a confirmation before execution
$ vso create-task --name "[string]" --description "[string]" --command "[command]" --need-confirm
copy


Create an automated task to execute during network connection or disconnection
$ vso create-task --name "[string]" --description "[string]" --command "[command]" --[on-network|on-disconnect]
copy


Delete an automated task
$ vso delete-task "[task]"
copy

Copied to clipboard