brewery
notashelf /
9b42e70054b83db1ffa193b4329a929b8f8bf508

chroma

public

Lightweight wallpaper daemon for Wayland

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/chroma.git
chroma.conf.sample48 lines1.7 KB
1
# This is a sample configuration file for the Chroma wallpaper daemon.
2
# Lines starting with # are comments and are ignored.
3
#
4
# Configuration file locations (checked in order):
5
#   1. ~/.config/chroma/chroma.conf
6
#   2. $XDG_CONFIG_HOME/chroma/chroma.conf
7
#   3. ./chroma.conf (current directory)
8
#
9
# To get started:
10
#   1. Copy this file to ~/.config/chroma/chroma.conf
11
#   2. Modify the paths to point to your wallpaper images
12
#   3. Use 'wlr-randr' or similar tools to find your output names
13
#   4. Restart chroma or send SIGHUP to reload configuration
14
15
# This image will be used for any output that doesn't have a specific mapping.
16
# Supports: JPEG, PNG, BMP, TGA, PSD, GIF, HDR, PIC, PPM, PGM
17
# Paths can be absolute or relative, ~ expansion is supported.
18
#
19
# Alternative examples:
20
# default_image = ~/Pictures/wallpapers/default.png
21
# default_image = /usr/share/wallpapers/default.jpg
22
# default_image = ./wallpapers/fallback.jpg
23
default_image = ~/.config/chroma/default.jpg
24
25
26
# Whether to run as a background daemon
27
# Usually set via command line option --daemon, but can be set here too
28
daemon_mode = false
29
30
# Output-specific wallpaper mappings
31
# ==================================
32
# Format: output.OUTPUT_NAME = /path/to/image.ext
33
#
34
# To find your output names, run one of these commands:
35
#   - wlr-randr (for wlroots-based compositors like Sway, Hyprland)
36
#   - wayland-info | grep wl_output
37
#   - kanshi list-outputs
38
#
39
# Common output name patterns:
40
#   - DP-1, DP-2, DP-3, etc. (DisplayPort)
41
#   - HDMI-A-1, HDMI-A-2, etc. (HDMI)
42
#   - eDP-1 (embedded DisplayPort, laptops)
43
#   - DVI-D-1, DVI-I-1 (DVI)
44
#   - VGA-1 (VGA, legacy)
45
#
46
#  Example:
47
#  output.HDMI-A-1 = ~/Pictures/wallpaper.jpg
48