mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
67 lines
1.2 KiB
Go
67 lines
1.2 KiB
Go
package cfg
|
|
|
|
const defaultConfigFile = `wtf:
|
|
colors:
|
|
border:
|
|
focusable: darkslateblue
|
|
focused: orange
|
|
normal: gray
|
|
grid:
|
|
columns: [40, 40]
|
|
rows: [13, 13, 4]
|
|
refreshInterval: 1
|
|
mods:
|
|
clocks:
|
|
colors:
|
|
rows:
|
|
even: "lightblue"
|
|
odd: "white"
|
|
enabled: true
|
|
locations:
|
|
Avignon: "Europe/Paris"
|
|
Barcelona: "Europe/Madrid"
|
|
Dubai: "Asia/Dubai"
|
|
Vancouver: "America/Vancouver"
|
|
Toronto: "America/Toronto"
|
|
position:
|
|
top: 0
|
|
left: 0
|
|
height: 1
|
|
width: 1
|
|
refreshInterval: 15
|
|
sort: "alphabetical"
|
|
security:
|
|
enabled: true
|
|
position:
|
|
top: 1
|
|
left: 0
|
|
height: 1
|
|
width: 1
|
|
refreshInterval: 3600
|
|
status:
|
|
enabled: true
|
|
position:
|
|
top: 2
|
|
left: 0
|
|
height: 1
|
|
width: 2
|
|
refreshInterval: 1
|
|
system:
|
|
enabled: true
|
|
position:
|
|
top: 0
|
|
left: 1
|
|
height: 1
|
|
width: 1
|
|
refreshInterval: 3600
|
|
textfile:
|
|
enabled: true
|
|
filePath: "~/.config/wtf/config.yml"
|
|
position:
|
|
top: 1
|
|
left: 1
|
|
height: 1
|
|
width: 1
|
|
refreshInterval: 30
|
|
`
|