4 Commits

Author SHA1 Message Date
6d3d69d103 chore: bump version to 0.3.8 2025-12-29 17:58:51 +01:00
bec8fc332b feat: increase default window size and reduce padding
- Default dimensions: 700x500 (was 600x400)
- Main container padding: 12px (was 16px)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 17:58:47 +01:00
a750ef8559 docs: add example files to README configuration section
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 17:47:21 +01:00
7cbebd324f chore: bump version to 0.3.7 2025-12-29 17:44:57 +01:00
6 changed files with 18 additions and 10 deletions

2
Cargo.lock generated
View File

@@ -971,7 +971,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
[[package]]
name = "owlry"
version = "0.3.6"
version = "0.3.8"
dependencies = [
"chrono",
"clap",

View File

@@ -1,6 +1,6 @@
[package]
name = "owlry"
version = "0.3.6"
version = "0.3.8"
edition = "2024"
rust-version = "1.90"
description = "A lightweight, owl-themed application launcher for Wayland"

View File

@@ -126,10 +126,18 @@ Owlry follows the [XDG Base Directory Specification](https://specifications.free
## Configuration
Copy the example config:
Copy the example files:
```bash
# Config
mkdir -p ~/.config/owlry
cp /usr/share/doc/owlry/config.example.toml ~/.config/owlry/config.toml
# Optional: CSS overrides
cp /usr/share/doc/owlry/style.example.css ~/.config/owlry/style.css
# Optional: Example script
mkdir -p ~/.local/share/owlry/scripts
cp /usr/share/doc/owlry/scripts/example.sh ~/.local/share/owlry/scripts/
```
### Example Configuration
@@ -143,8 +151,8 @@ tabs = ["app", "cmd", "uuctl"] # Header tabs (Ctrl+1, Ctrl+2, etc.)
# launch_wrapper = "uwsm app --" # Auto-detected
[appearance]
width = 600
height = 400
width = 700
height = 500
font_size = 14
border_radius = 12
# theme = "owl" # Or: catppuccin-mocha, nord, dracula, etc.

View File

@@ -34,8 +34,8 @@ tabs = ["app", "cmd", "uuctl"]
# ═══════════════════════════════════════════════════════════════════════
[appearance]
width = 600
height = 400
width = 700
height = 500
font_size = 14
border_radius = 12

View File

@@ -235,8 +235,8 @@ impl Default for Config {
tabs: default_tabs(),
},
appearance: AppearanceConfig {
width: 600,
height: 400,
width: 700,
height: 500,
font_size: 14,
border_radius: 12,
theme: None,

View File

@@ -14,7 +14,7 @@
background-color: var(--owlry-bg, @theme_bg_color);
border-radius: var(--owlry-border-radius, 12px);
border: 1px solid var(--owlry-border, @borders);
padding: 16px;
padding: 12px;
}
/* Search entry */