-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
49 lines (43 loc) · 1.12 KB
/
config.example.toml
File metadata and controls
49 lines (43 loc) · 1.12 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
# smon configuration file
# Copy to ~/.config/smon/config.toml to customize
# Refresh interval in seconds.
# Minimum enforced: 120 seconds (HPC cluster policy compliance).
# Manual refresh with 'r' key is always available.
refresh_interval = 120
# Enable automatic refresh.
# Set to false for manual-only refresh mode.
auto_refresh = true
# Start in compact job view (fewer columns).
compact_mode = false
# Default focused pane on startup: "jobs" or "nodes"
default_pane = "jobs"
# Color palette for the dashboard UI.
# Available: "default", "ocean", "sunset", "graphite"
color_scheme = "default"
# Columns to display in the full (non-compact) jobs table.
# Available columns:
# id, name, user, account, state, prio, left, gpu, cpu, mem,
# nodes, reason, qos, part, dep, time, submit
#
# Default: all columns shown
# Example for minimal view:
# job_columns = ["id", "user", "state", "gpu", "nodes", "left"]
job_columns = [
"id",
"name",
"user",
"account",
"state",
"prio",
"left",
"gpu",
"cpu",
"mem",
"nodes",
"reason",
"qos",
"part",
"dep",
"time",
"submit",
]