mirror of
https://github.com/neoromantique/dotfiles.git
synced 2026-03-13 21:53:20 +03:00
65 lines
2.0 KiB
Cheetah
65 lines
2.0 KiB
Cheetah
{{- /* Detect hostname and suggest default profile */ -}}
|
|
{{- $hostname := .chezmoi.hostname -}}
|
|
{{- $defaultProfile := "desktop" -}}
|
|
{{- if eq $hostname "box" -}}
|
|
{{- $defaultProfile = "desktop" -}}
|
|
{{- else if eq $hostname "bluefin" -}}
|
|
{{- $defaultProfile = "laptop" -}}
|
|
{{- end -}}
|
|
|
|
{{- /* Prompt for device profile */ -}}
|
|
{{- $deviceProfile := promptStringOnce . "deviceProfile" (printf "Device profile (desktop/laptop) [%s]" $defaultProfile) -}}
|
|
{{- if eq $deviceProfile "" -}}
|
|
{{- $deviceProfile = $defaultProfile -}}
|
|
{{- end -}}
|
|
|
|
{{- /* Detect distro */ -}}
|
|
{{- $distro := "unknown" -}}
|
|
{{- if stat "/etc/arch-release" -}}
|
|
{{- $distro = "arch" -}}
|
|
{{- else if lookPath "rpm-ostree" -}}
|
|
{{- $distro = "fedora-atomic" -}}
|
|
{{- else if stat "/etc/fedora-release" -}}
|
|
{{- $distro = "fedora" -}}
|
|
{{- end -}}
|
|
|
|
{{- /* Prompt for secrets path */ -}}
|
|
{{- $secretsPath := promptStringOnce . "secretsPath" "Path to secrets directory [~/secrets]" -}}
|
|
{{- if eq $secretsPath "" -}}
|
|
{{- $secretsPath = "~/secrets" -}}
|
|
{{- end -}}
|
|
|
|
{{- /* Prompt for workspace PIN */ -}}
|
|
{{- $workspacePin := promptStringOnce . "workspacePin" "Workspace PIN (for protected workspaces) [1234]" -}}
|
|
{{- if eq $workspacePin "" -}}
|
|
{{- $workspacePin = "1234" -}}
|
|
{{- end -}}
|
|
|
|
[data]
|
|
deviceProfile = {{ $deviceProfile | quote }}
|
|
hostname = {{ $hostname | quote }}
|
|
distro = {{ $distro | quote }}
|
|
secretsPath = {{ $secretsPath | quote }}
|
|
workspacePin = {{ $workspacePin | quote }}
|
|
|
|
# Device-specific configuration
|
|
{{- if eq $deviceProfile "desktop" }}
|
|
primaryMonitor = "DP-2"
|
|
secondaryMonitor = ""
|
|
primaryResolution = "2560x1440@144"
|
|
secondaryResolution = ""
|
|
hasMultipleMonitors = false
|
|
hasTouchpad = false
|
|
hasBattery = false
|
|
idleTimeout = 300
|
|
{{- else if eq $deviceProfile "laptop" }}
|
|
primaryMonitor = "eDP-1"
|
|
secondaryMonitor = ""
|
|
primaryResolution = "preferred"
|
|
secondaryResolution = ""
|
|
hasMultipleMonitors = false
|
|
hasTouchpad = true
|
|
hasBattery = true
|
|
idleTimeout = 180
|
|
{{- end }}
|