-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyccsl.env.example
More file actions
60 lines (48 loc) · 1.82 KB
/
pyccsl.env.example
File metadata and controls
60 lines (48 loc) · 1.82 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
#!/bin/bash
# Example environment file for pyccsl
# This file can be used with --env option or sourced as a bash script
#
# Usage:
# pyccsl --env pyccsl.env
# OR
# source pyccsl.env && pyccsl
#
# Copy this file to pyccsl.env and modify as needed
# Changes take effect immediately - no restart required!
# Theme selection (default, solarized, nord, dracula, gruvbox, tokyo, catppuccin, minimal, none)
PYCCSL_THEME="default"
# Number formatting (compact, full, raw)
PYCCSL_NUMBERS="compact"
# Separator style (simple, powerline, arrows, pipes, dots)
PYCCSL_STYLE="simple"
# Disable emoji characters (true/false)
PYCCSL_NO_EMOJI="false"
# Performance thresholds for cache hit rate (green,yellow,orange percentages)
PYCCSL_PERF_CACHE="95,90,75"
# Performance thresholds for response time (green,yellow,orange seconds)
PYCCSL_PERF_RESPONSE="10,30,60"
# Default fields to display
# Available fields:
# badge - Performance indicator (●○○○)
# folder - Current folder name
# git - Git branch and status
# model - Model name (e.g., Sonnet)
# input - Input tokens
# output - Output tokens
# tokens - Total context tokens
# cost - Session cost
# perf-all-metrics - All performance metrics
# perf-cache-rate - Cache hit rate percentage
# perf-response-time - Average response time
# perf-session-time - Total session duration
# perf-message-count - Number of messages
PYCCSL_FIELDS="badge,folder,git,model,input,output,tokens,cost"
# Example configurations:
# Minimal display
# PYCCSL_FIELDS="model,cost"
# Performance focused
# PYCCSL_FIELDS="badge,model,perf-all-metrics,cost"
# Developer focused
# PYCCSL_FIELDS="badge,git,model,tokens,cost"
# Full metrics
# PYCCSL_FIELDS="badge,folder,git,model,perf-all-metrics,input,output,tokens,cost"