diff options
author | Jesús <heckyel@hyperbola.info> | 2020-05-20 23:35:06 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-05-20 23:35:06 -0500 |
commit | 418350bcb9d4b6107455719b216f202f151ec5b0 (patch) | |
tree | 9a4a742cd40679966293a3164d049c93ae20a586 /install.sh | |
parent | 0af56c85df2e0b7b65bce29856a2e6d0d95140f8 (diff) | |
download | i3-config-418350bcb9d4b6107455719b216f202f151ec5b0.tar.lz i3-config-418350bcb9d4b6107455719b216f202f151ec5b0.tar.xz i3-config-418350bcb9d4b6107455719b216f202f151ec5b0.zip |
fix fontawesome directory output
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -49,7 +49,8 @@ do install -m644 -v /tmp/i3config/tmp/conky.conf "$HOME/.config/conky/" printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying FontAwesome...' '\e[m' - install -m644 -v /tmp/i3config/tmp/fontawesome.ttf "$HOME/.local/share/fonts/" + install -d -m755 "$HOME/.local/share/fonts/" + install -m644 -v /tmp/i3config/fonts/fontawesome.ttf "$HOME/.local/share/fonts/" printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying termite-config...' '\e[m' install -d -m755 "$HOME/.config/termite" |