zlaunch
Configuration

Search Providers

Configure web search engines

zlaunch includes built-in search providers and supports custom ones.

Default Providers

NameTrigger
Google!g
DuckDuckGo!d
Wikipedia!wiki
YouTube!yt

Adding Custom Providers

[[search_providers]]
name = "GitHub"
trigger = "!gh"
url = "https://github.com/search?q={query}"
icon = "brain"

[[search_providers]]
name = "Brave Search"
trigger = "!br"
url = "https://search.brave.com/search?q={query}"

[[search_providers]]
name = "Reddit"
trigger = "!r"
url = "https://www.reddit.com/search/?q={query}"

Provider Options

FieldRequiredDescription
nameYesDisplay name in launcher
triggerYesPrefix to activate (e.g., !g)
urlYesSearch URL with {query} placeholder
iconNoIcon name (see below)

Available Icons

Icon NameDescription
magnifying-glassDefault search icon
globeWeb/internet
book-openDocumentation/wiki
youtube-logoVideo
brainAI/code
terminalDeveloper tools
file / file-textFiles
imageImages

Usage

Type the trigger followed by your query:

!gh zlaunch          # Search GitHub for "zlaunch"
!wiki rust lang      # Search Wikipedia for "rust lang"
!yt tutorial         # Search YouTube for "tutorial"

Press Enter to open the search in your default browser.

Tips:

  • Triggers should start with ! or : for easy recognition
  • Keep triggers short (2-4 characters) for quick typing
  • URL must include {query} placeholder
  • URL must start with http:// or https://

On this page