Files
dotfiles/copy_fonts_arch.sh

13 lines
247 B
Bash
Raw Permalink Normal View History

2022-07-05 13:01:06 +02:00
#! /bin/sh
#
# copy_fonts_arch.sh
# Copyright (C) 2022 fabian <fabian@krikkit>
#
# Distributed under terms of the MIT license.
#
mkdir -p $HOME/.local/share/fonts
for filename in fonts/*; do
cp "$filename" "$HOME/.local/share/$filename"
done