Dagger
Search

sysi

Implements a few flavours: neofetch & fastfetch
PR welcome with your favourite: https://beucismis.github.io/awesome-fetch/

Installation

dagger install github.com/gerhard/daggerverse/sysi@2fb680312db71c522c2341e12998a9b827737ec4

Entrypoint

Return Type
Sysi
Example
dagger -m github.com/gerhard/daggerverse/sysi@2fb680312db71c522c2341e12998a9b827737ec4 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

Return Type
String !
Example
dagger -m github.com/gerhard/daggerverse/sysi@2fb680312db71c522c2341e12998a9b827737ec4 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

Return Type
String !
Example
dagger -m github.com/gerhard/daggerverse/sysi@2fb680312db71c522c2341e12998a9b827737ec4 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()
}