Skip to main content

max / alloy_tui

1.3 KB · 41 lines History Blame Raw
1 # Alloy satty configuration
2 #
3 # Screenshot annotator per docs/STACK.md#screenshot-stack. Sway's
4 # built-in captures the frame; satty picks up when the user wants
5 # to annotate before sharing.
6 #
7 # Bound in the sway config as Mod+Print — annotates the most recent
8 # screenshot under ~/Pictures/Screenshots/.
9
10 [general]
11 # Fullscreen so the tool blocks the whole session; matches the
12 # screenshot-first-then-annotate flow better than a windowed editor.
13 fullscreen = true
14
15 # Skip the "save as" dialog on Ctrl+S — dump to the standard path.
16 early-exit = true
17
18 # Save PNG next to the source under ~/Pictures/Screenshots.
19 save-after-copy = false
20 output-filename = "%Y%m%d-%H%M%S.png"
21
22 # Initial pen color = accent-warn (Alloy amber). Matches the OSD
23 # highlight so the user isn't surprised the pen isn't red.
24 initial-tool = "pen"
25
26 # -------------------------------------------------------------------
27 # Palette exposed in the color picker — Alloy accents + neutrals.
28 # ------------------------------------------------------------------
29 [color-palette]
30 palette = [
31 "#b07840", # accent-warn
32 "#6a2828", # accent-error
33 "#3a5830", # accent-ok
34 "#4a86c0", # accent-info
35 "#1a1816", # text-primary
36 "#ede7de", # surface-raised
37 ]
38
39 [font]
40 family = "IosevkaTerm Nerd Font"
41