|
# DWN - Desktop Window Manager Configuration
|
|
# Copy this file to ~/.config/dwn/config
|
|
|
|
[general]
|
|
# Terminal emulator (default: xfce4-terminal)
|
|
terminal = xfce4-terminal
|
|
|
|
# Application launcher (default: dmenu_run)
|
|
launcher = dmenu_run
|
|
|
|
# File manager (default: thunar)
|
|
file_manager = thunar
|
|
|
|
# Focus mode: click or follow (default: click)
|
|
focus_mode = click
|
|
|
|
# Show window decorations (default: true)
|
|
decorations = true
|
|
|
|
[appearance]
|
|
# Border width in pixels (default: 0)
|
|
border_width = 0
|
|
|
|
# Title bar height in pixels (default: 28)
|
|
title_height = 28
|
|
|
|
# Panel height in pixels (default: 32)
|
|
panel_height = 32
|
|
|
|
# Gap between windows in pixels (default: 0)
|
|
gap = 0
|
|
|
|
# Font for titles and panels (default: fixed)
|
|
# Use xlsfonts to list available fonts
|
|
font = -misc-fixed-medium-r-normal--13-*-*-*-*-*-iso8859-1
|
|
|
|
[layout]
|
|
# Default layout: tiling, floating, or monocle (default: tiling)
|
|
default = tiling
|
|
|
|
# Master area ratio (0.1 to 0.9, default: 0.55)
|
|
master_ratio = 0.55
|
|
|
|
# Number of windows in master area (default: 1)
|
|
master_count = 1
|
|
|
|
[panels]
|
|
# Enable top panel (default: true)
|
|
top = true
|
|
|
|
# Enable bottom panel (default: true)
|
|
bottom = true
|
|
|
|
[colors]
|
|
# All colors in hex format (#RRGGBB)
|
|
|
|
# Panel colors
|
|
panel_bg = #1a1a2e
|
|
panel_fg = #e0e0e0
|
|
|
|
# Workspace indicator colors
|
|
workspace_active = #4a90d9
|
|
workspace_inactive = #3a3a4e
|
|
workspace_urgent = #d94a4a
|
|
|
|
# Window title bar colors
|
|
title_focused_bg = #2d3a4a
|
|
title_focused_fg = #ffffff
|
|
title_unfocused_bg = #1a1a1a
|
|
title_unfocused_fg = #808080
|
|
|
|
# Window border colors
|
|
border_focused = #4a90d9
|
|
border_unfocused = #333333
|
|
|
|
# Notification colors
|
|
notification_bg = #2a2a3e
|
|
notification_fg = #ffffff
|
|
|
|
[ai]
|
|
# AI model to use (default: google/gemini-2.0-flash-exp:free)
|
|
# See https://openrouter.ai/models for available models
|
|
model = google/gemini-2.0-flash-exp:free
|
|
|
|
# OpenRouter API key for AI features (Super+Shift+A)
|
|
# Can also be set via OPENROUTER_API_KEY environment variable
|
|
# Sign up and get your key at: https://openrouter.ai/keys
|
|
# openrouter_api_key = sk-or-v1-your-key-here
|
|
|
|
# Exa API key for semantic web search (Super+Shift+E)
|
|
# Can also be set via EXA_API_KEY environment variable
|
|
# Sign up and get your key at: https://dashboard.exa.ai/api-keys
|
|
# exa_api_key = your-exa-key-here
|
|
|
|
[autostart]
|
|
# Enable XDG autostart support (default: true)
|
|
# Automatically starts applications from XDG autostart directories
|
|
enabled = true
|
|
|
|
# Scan XDG .desktop files (default: true)
|
|
# Directories: /etc/xdg/autostart and ~/.config/autostart
|
|
xdg_autostart = true
|
|
|
|
# Additional directory for symlinks and scripts (default: ~/.config/dwn/autostart.d)
|
|
# Create symlinks to binaries you want to start: ln -s /usr/bin/telegram-desktop ~/.config/dwn/autostart.d/
|
|
path = ~/.config/dwn/autostart.d
|