18 lines
238 B
Bash
18 lines
238 B
Bash
#!/usr/bin/env bash
|
|
|
|
function package_install() {
|
|
curl -s https://ohmyposh.dev/install.sh | bash -s
|
|
}
|
|
|
|
function package_update() {
|
|
#TODO
|
|
}
|
|
|
|
function package_remove() {
|
|
#TODO
|
|
}
|
|
|
|
function package_check_installed() {
|
|
#TODO
|
|
}
|