10 lines
384 B
Bash
10 lines
384 B
Bash
|
#!/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
|