sysi
Implements a few flavours: neofetch & fastfetchPR welcome with your favourite: https://beucismis.github.io/awesome-fetch/
Installation
dagger install github.com/gerhard/daggerverse/sysi@55c602bc16b204f71dc16ff32de91fbe22ad968bEntrypoint
Return Type
Sysi Example
dagger -m github.com/gerhard/daggerverse/sysi@55c602bc16b204f71dc16ff32de91fbe22ad968b call \
func (m *MyModule) Example() *dagger.Sysi {
return dag.
Sysi()
}@function
def example() -> dagger.Sysi:
return (
dag.sysi()
)@func()
example(): Sysi {
return dag
.sysi()
}Types
Sysi 🔗
neofetch() 🔗
https://github.com/dylanaraps/neofetch
Return Type
String ! Example
dagger -m github.com/gerhard/daggerverse/sysi@55c602bc16b204f71dc16ff32de91fbe22ad968b call \
neofetchfunc (m *MyModule) Example(ctx context.Context) string {
return dag.
Sysi().
Neofetch(ctx)
}@function
async def example() -> str:
return await (
dag.sysi()
.neofetch()
)@func()
async example(): Promise<string> {
return dag
.sysi()
.neofetch()
}fastfetch() 🔗
https://github.com/fastfetch-cli/fastfetch
Return Type
String ! Example
dagger -m github.com/gerhard/daggerverse/sysi@55c602bc16b204f71dc16ff32de91fbe22ad968b call \
fastfetchfunc (m *MyModule) Example(ctx context.Context) string {
return dag.
Sysi().
Fastfetch(ctx)
}@function
async def example() -> str:
return await (
dag.sysi()
.fastfetch()
)@func()
async example(): Promise<string> {
return dag
.sysi()
.fastfetch()
}i() 🔗
Interactively
Return Type
Terminal !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| pkg | String ! | - | No description provided |
Example
dagger -m github.com/gerhard/daggerverse/sysi@55c602bc16b204f71dc16ff32de91fbe22ad968b call \
i --pkg stringfunc (m *MyModule) Example(pkg string) *dagger.Terminal {
return dag.
Sysi().
I(pkg)
}@function
def example(pkg: str) -> dagger.Terminal:
return (
dag.sysi()
.i(pkg)
)@func()
example(pkg: string): Terminal {
return dag
.sysi()
.i(pkg)
}