mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-09-26 10:25:03 +02:00
17 lines
240 B
Bash
Executable file
17 lines
240 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source ./utils.sh
|
|
|
|
FONTS_DIR="../configs/host/ui/fonts"
|
|
|
|
install_ttf_fonts() {
|
|
sudo cp *.ttf /usr/share/fonts/TTF
|
|
sudo fc-cache -f -v
|
|
|
|
log "Fonts installed successfully!"
|
|
}
|
|
|
|
check_sudo
|
|
|
|
cd $FONTS_DIR
|
|
install_ttf_fonts
|