Add font configuration

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-05-30 18:43:16 +02:00
parent 636c25e519
commit 3aab1c0e4e
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
5 changed files with 54 additions and 4 deletions

12
install
View file

@ -107,6 +107,7 @@ ADD_GROUPS=(
# Array of systemd services which should be enabled
SYSTEMD_SERVICES=(
"acpid"
"cronie"
"NetworkManager"
"org.cups.cupsd"
@ -334,6 +335,9 @@ sudo install -m 644 "${SYSTEM_DIR}/etc/X11/xorg.conf.d/20-displaylink.conf" "/et
print_log "Copying 20-displaylink.conf to ${YELLOW}/etc/X11/nvidia-xorg.conf.d${RESET}"
sudo install -m 644 "${SYSTEM_DIR}/etc/X11/xorg.conf.d/20-displaylink.conf" "/etc/X11/nvidia-xorg.conf.d"
print_log "Copying vconsole.conf to ${YELLOW}/etc/vconsole.conf${RESET}"
sudo install -m 644 "${SYSTEM_DIR}/etc/vconsole.conf" "/etc/vconsole.conf"
###############################################################################
# Setting lockscreen image #
###############################################################################
@ -354,6 +358,14 @@ print_section "Creating issue file"
sudo install "/tmp/issue" "/etc/issue"
print_log "Issue file created"
###############################################################################
# Fonts #
###############################################################################
print_section "Fonts"
sudo mkfontdir /usr/share/fonts/75dpi
sudo mkfontdir /usr/share/fonts/100dpi
print_log "Prepare xorg fonts"
###############################################################################
# Set default shell #
###############################################################################