install.fairie/home/.chezmoiscripts/linux/run_onchange_before_10-system-tweaks.tmpl
Brian Zalewski 62be8437b1 Update 6 files
- /home/dot_local/bin/executable_install-program
- /home/.chezmoiscripts/linux/run_onchange_before_10-system-tweaks.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_25-gnome-extension-settings.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_4-environment-profile.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_5-log-config.tmpl
- /software.yml
2023-01-12 15:02:13 +00:00

25 lines
784 B
Bash

#!/usr/bin/env bash
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
### Set hostname (if redefined)
if command -v hostnamectl > /dev/null; then
# Betelgeuse is the default hostname so only change when it is different
if [ '{{ .host.hostname }}' != 'Betelgeuse' ]; then
logg info "Setting hostname to {{ .host.hostname }}"
sudo hostnamectl set-hostname {{ .host.hostname }}
fi
fi
### Set timezone
if command -v timedatectl > /dev/null; then
logg info 'Setting timezone to `{{ .user.timezone }}`'
sudo timedatectl set-timezone {{ .user.timezone }}
fi
### Modify vm.max_map_count
if command -v sysctl > /dev/null; then
logg info 'Increasing vm.max_map_count size to 262144'
sudo sysctl -w vm.max_map_count=262144 > /dev/null
fi