ikaros: add page; vso: update page (#10667)

Co-authored-by: pixel <pixel+github@chrissx.de>
pull/23/head
K.B.Dharun Krishna 2023-09-09 22:55:21 +05:30 committed by GitHub
parent 953b94b650
commit c36f2c4d5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 17 deletions

16
pages/linux/ikaros.md Normal file
View File

@ -0,0 +1,16 @@
# ikaros
> Vanilla OS Tool for managing drivers for your device.
> More information: <https://github.com/Vanilla-OS/Ikaros>.
- Interactively install drivers for your device:
`ikaros install {{device}}`
- Automatically install the recommended drivers for your device:
`ikaros auto-install {{device}}`
- List devices:
`ikaros list-devices`

View File

@ -1,36 +1,36 @@
# vso
> Utility to perform maintenance tasks on Vanilla OS.
> Package manager, system updater and a task automator for Vanilla OS.
> More information: <https://github.com/Vanilla-OS/vanilla-system-operator>.
- Trigger a system update immediately:
- Check for system updates to the host system:
`sudo vso trigger-update --now`
`vso sys-upgrade check`
- Check for package updates and list them:
- Upgrade the host system now:
`sudo vso update-check`
`vso sys-upgrade upgrade --now`
- Create an automated task upon an application's launch:
- Initialize the Pico subsystem (used for package management):
`vso create-task --name "{{string}}" --description "{{string}}" --{{command|on-condition-command}} "{{command}}" --on-process {{integer}}`
`vso pico-init`
- Create an automated task to execute during boot:
- Install applications inside the subsystem:
`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --on-boot`
`vso install {{package1 package2 ...}}`
- Create an automated task to execute during specific battery states:
- Remove applications from the subsystem:
`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --{{on-low-battery|on-charge|on-battery|on-full-battery}}`
`vso remove {{package1 package2 ...}}`
- Create an automated task which asks for a confirmation before execution:
- Enter the subsystem's shell:
`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --need-confirm`
`vso shell`
- Create an automated task to execute during network connection or disconnection:
- Run an application from the subsystem:
`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --{{on-network|on-disconnect}}`
`vso run {{package}}`
- Delete an automated task:
- Display VSO configuration:
`vso delete-task "{{task}}"`
`vso config show`