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@v0.1.0
Entrypoint
Return Type
Sysi
Example
dagger -m github.com/gerhard/daggerverse/sysi@37cc457a10c749640ef4a2a3da83c5e50f8d9120 call \
func (m *myModule) example() *Sysi {
return dag.
Sysi()
}
@function
def example() -> dag.Sysi:
return (
dag.sysi()
)
@func()
example(): Sysi {
return dag
.sysi()
}
Types
Sysi 🔗
neofetch() 🔗
https://github.com/dylanaraps/neofetch dagger call neofetch
Return Type
String !
Example
dagger -m github.com/gerhard/daggerverse/sysi@37cc457a10c749640ef4a2a3da83c5e50f8d9120 call \
neofetch
func (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 dagger call fastfetch
Return Type
String !
Example
dagger -m github.com/gerhard/daggerverse/sysi@37cc457a10c749640ef4a2a3da83c5e50f8d9120 call \
fastfetch
func (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()
}