mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
I tried Nix, but it had too many downsides so I removed it. 1. Didn't like that all files are immutable and simple config changes need a complete rebuild. 2. Setting up a new Mac didn't work as smoothly as promised. Not worth the effort. 3. It sucked a lot to always have to type in the password twice on each darwin-rebuild 4. It solves problems I never had.
55 lines
2.0 KiB
YAML
55 lines
2.0 KiB
YAML
gui:
|
|
scrollHeight: 2
|
|
language: "auto" # one of 'auto' | 'en' | 'pl' | 'nl' | 'de' | 'tr'
|
|
theme:
|
|
activeBorderColor:
|
|
- green
|
|
- bold
|
|
inactiveBorderColor:
|
|
- white
|
|
optionsTextColor:
|
|
- blue
|
|
returnImmediately: false
|
|
wrapMainPanel: true
|
|
# Side panel width as a ratio of the screen's width
|
|
sidePanelWidth: 0.333
|
|
# Determines whether we show the bottom line (the one containing keybinding
|
|
# info and the status of the app).
|
|
showBottomLine: true
|
|
# When true, increases vertical space used by focused side panel,
|
|
# creating an accordion effect
|
|
expandFocusedSidePanel: false
|
|
logs:
|
|
timestamps: false
|
|
since: "60m" # set to '' to show all logs
|
|
tail: "" # set to 200 to show last 200 lines of logs
|
|
commandTemplates:
|
|
dockerCompose: docker-compose
|
|
restartService: "{{ .DockerCompose }} restart {{ .Service.Name }}"
|
|
up: "{{ .DockerCompose }} up -d"
|
|
down: "{{ .DockerCompose }} down"
|
|
downWithVolumes: "{{ .DockerCompose }} down --volumes"
|
|
upService: "{{ .DockerCompose }} up -d {{ .Service.Name }}"
|
|
startService: "{{ .DockerCompose }} start {{ .Service.Name }}"
|
|
stopService: "{{ .DockerCompose }} stop {{ .Service.Name }}"
|
|
serviceLogs: "{{ .DockerCompose }} logs --since=60m --follow {{ .Service.Name }}"
|
|
viewServiceLogs: "{{ .DockerCompose }} logs --follow {{ .Service.Name }}"
|
|
rebuildService: "{{ .DockerCompose }} up -d --build {{ .Service.Name }}"
|
|
recreateService: "{{ .DockerCompose }} up -d --force-recreate {{ .Service.Name }}"
|
|
allLogs: "{{ .DockerCompose }} logs --tail=300 --follow"
|
|
viewAlLogs: "{{ .DockerCompose }} logs"
|
|
dockerComposeConfig: "{{ .DockerCompose }} config"
|
|
checkDockerComposeConfig: "{{ .DockerCompose }} config --quiet"
|
|
serviceTop: "{{ .DockerCompose }} top {{ .Service.Name }}"
|
|
oS:
|
|
openCommand: open {{filename}}
|
|
openLinkCommand: open {{link}}
|
|
stats:
|
|
graphs:
|
|
- caption: CPU (%)
|
|
statPath: DerivedStats.CPUPercentage
|
|
color: blue
|
|
- caption: Memory (%)
|
|
statPath: DerivedStats.MemoryPercentage
|
|
color: green
|