-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
73 lines (66 loc) · 2.03 KB
/
config.example.toml
File metadata and controls
73 lines (66 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# clockie — Wayland layer-shell desktop clock
# Copy to ~/.config/clockie/config.toml
[window]
# Initial size in logical pixels
width = 320
height = 240
# Layer: background | bottom | top | overlay
layer = "top"
# Anchor edges: top | bottom | left | right (space-separated)
anchor = "top right"
# Margin from anchored edges (px)
margin_top = 20
margin_right = 20
margin_bottom = 0
margin_left = 0
# Allow interactive resize via pointer drag
resizable = true
# Window opacity 0.0–1.0
opacity = 1.0
# Start in compact mode
compact = false
[clock]
# "digital" | "analogue"
face = "digital"
# 12 | 24
hour_format = 12
# Show seconds on digital face
show_seconds = true
# Show date line on digital face
show_date = true
# Date format string (chrono strftime)
date_format = "%A, %d %B %Y"
# Font: system font name or path to .ttf/.otf
font = "monospace"
[theme]
# Foreground colour (RRGGBBAA hex, # prefix optional)
fg_color = "FFFFFFFF"
# Background fill colour (used if no bg_image, or as scrim tint)
bg_color = "1a1a2eCC"
# Analogue hand colours
hour_hand_color = "FFFFFFFF"
minute_hand_color = "FFFFFFFF"
second_hand_color = "ef4444FF"
# Tick mark colour (used when no face image)
tick_color = "CCCCCCFF"
[background]
# Path to a PNG/JPEG image to render behind digital clock text
# Empty = use bg_color fill
digital_image = ""
# Path to a PNG/JPEG image to use as the analogue clock face
# Replaces drawn circle + ticks — hands are drawn on top
analogue_face_image = ""
# Scale mode: "fill" | "fit" | "stretch" | "center"
image_scale = "fill"
# Gallery: multiple images to cycle through (overrides single-image fields when non-empty)
# digital_images = ["~/wallpapers/a.png", "~/wallpapers/b.jpg"]
# analogue_face_images = ["~/faces/classic.png", "~/faces/minimal.png"]
# Auto-rotate interval in seconds (0 = disabled)
# gallery_interval = 300
# Up to 2 timezone entries. Additional entries are ignored.
# [[timezone]]
# label = "London"
# tz = "Europe/London"
# [[timezone]]
# label = "New York"
# tz = "America/New_York"