c072b46911
- /home/.chezmoiscripts/universal/run_onchange_after_5-log-config.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_4-environment-profile.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_64-grub-settings.tmpl
15 lines
530 B
Cheetah
15 lines
530 B
Cheetah
{{- if (eq .host.distro.family "linux") -}}
|
|
#!/usr/bin/env bash
|
|
|
|
{{ includeTemplate "universal/profile" }}
|
|
{{ includeTemplate "universal/logg" }}
|
|
|
|
### Ensure QT_STYLE_OVERRIDE is set in /etc/environment
|
|
logg info 'Ensuring QT_STYLE_OVERRIDE is set in /etc/environment'
|
|
if cat /etc/environment | grep QT_STYLE_OVERRIDE > /dev/null; then
|
|
sudo sed -i 's/.*QT_STYLE_OVERRIDE.*/export QT_STYLE_OVERRIDE=kvantum-dark/' /etc/environment
|
|
else
|
|
echo 'export QT_STYLE_OVERRIDE=kvantum-dark' | sudo tee -a /etc/environment
|
|
fi
|
|
|
|
{{ end -}}
|