- Add file locations header documenting all XDG paths - Fix scripts path: $XDG_DATA_HOME not $XDG_CONFIG_HOME - Document theme location for custom themes - Document style.css for custom CSS overrides - Document frecency.json storage location 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
93 lines
2.7 KiB
TOML
93 lines
2.7 KiB
TOML
# Owlry Configuration
|
|
# Copy to ~/.config/owlry/config.toml
|
|
#
|
|
# File locations (XDG Base Directory compliant):
|
|
# Config: $XDG_CONFIG_HOME/owlry/config.toml (~/.config/owlry/)
|
|
# Themes: $XDG_CONFIG_HOME/owlry/themes/*.css
|
|
# Style: $XDG_CONFIG_HOME/owlry/style.css (custom CSS overrides)
|
|
# Scripts: $XDG_DATA_HOME/owlry/scripts/ (~/.local/share/owlry/)
|
|
# Data: $XDG_DATA_HOME/owlry/frecency.json
|
|
|
|
[general]
|
|
show_icons = true
|
|
max_results = 10
|
|
terminal_command = "kitty" # Auto-detected if not set
|
|
|
|
# Launch wrapper for app execution (auto-detected if not set)
|
|
# Examples:
|
|
# "uwsm app --" # For uwsm sessions
|
|
# "hyprctl dispatch exec --" # For Hyprland
|
|
# "" # Direct execution
|
|
# launch_wrapper = "uwsm app --"
|
|
|
|
# Provider tabs shown in header bar (Ctrl+1, Ctrl+2, etc. to toggle)
|
|
# Valid values: app, cmd, uuctl, bookmark, calc, clip, dmenu, emoji, file, script, ssh, sys, web
|
|
tabs = ["app", "cmd", "uuctl"]
|
|
|
|
[appearance]
|
|
width = 600
|
|
height = 400
|
|
font_size = 14
|
|
border_radius = 12
|
|
|
|
# Theme: "owl" for built-in dark theme, or leave unset for GTK default
|
|
# Custom themes: place in $XDG_CONFIG_HOME/owlry/themes/{name}.css
|
|
# theme = "owl"
|
|
|
|
# Custom CSS: create $XDG_CONFIG_HOME/owlry/style.css for additional styling
|
|
|
|
# Individual color overrides (CSS color values)
|
|
# [appearance.colors]
|
|
# background = "#1a1b26"
|
|
# background_secondary = "#24283b"
|
|
# border = "#414868"
|
|
# text = "#c0caf5"
|
|
# text_secondary = "#565f89"
|
|
# accent = "#7aa2f7"
|
|
# accent_bright = "#89b4fa"
|
|
# badge_app = "#9ece6a"
|
|
# badge_calc = "#e0af68"
|
|
# badge_cmd = "#7aa2f7"
|
|
# badge_dmenu = "#bb9af7"
|
|
# badge_uuctl = "#f7768e"
|
|
|
|
[providers]
|
|
applications = true
|
|
commands = true
|
|
uuctl = true
|
|
|
|
# Calculator provider (type "= 5+3" or "calc 5+3")
|
|
calculator = true
|
|
|
|
# Frecency: boost frequently/recently used items in search results
|
|
# Data stored in $XDG_DATA_HOME/owlry/frecency.json
|
|
frecency = true
|
|
frecency_weight = 0.3 # 0.0 = disabled, 1.0 = strong boost
|
|
|
|
# Web search provider (type "? query" or "web query")
|
|
websearch = true
|
|
# Options: google, duckduckgo, bing, startpage, searxng, brave, ecosia
|
|
# Or custom URL with {query} placeholder, e.g. "https://search.example.com/?q={query}"
|
|
search_engine = "duckduckgo"
|
|
|
|
# System commands (shutdown, reboot, lock, suspend, hibernate, logout, BIOS)
|
|
system = true
|
|
|
|
# SSH connections from ~/.ssh/config
|
|
ssh = true
|
|
|
|
# Clipboard history (requires cliphist)
|
|
clipboard = true
|
|
|
|
# Browser bookmarks (Chrome, Chromium, Brave, Edge, Vivaldi)
|
|
bookmarks = true
|
|
|
|
# Emoji picker (copies to clipboard)
|
|
emoji = true
|
|
|
|
# Custom scripts from $XDG_DATA_HOME/owlry/scripts/ (~/.local/share/owlry/scripts/)
|
|
scripts = true
|
|
|
|
# File search (requires fd or locate, trigger with "/ pattern" or "find pattern")
|
|
files = true
|