10 lines
384 B
Bash
Executable File
10 lines
384 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##################################################################################
|
|
# First Created: 03012025 Author: Allan Desc: Installs fonts for bash-git-prompt #
|
|
##################################################################################
|
|
|
|
mkdir -p $HOME/.local/share/fonts
|
|
cp $HOME/.bash-git-prompt/fonts/*.ttf $HOME/.local/share/fonts
|
|
fc-cache -f
|