diff options
author | Jesús <heckyel@hyperbola.info> | 2019-07-30 21:23:45 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-07-30 21:23:45 -0500 |
commit | 5a2afa1332cdbb71b4b9f35bc9d129ac8a3c62f9 (patch) | |
tree | 4cf08cf2687d9da4a6aad106b6731cf49954486d | |
parent | b88cd1b4f16b66c5a351d1eb506182c94041c092 (diff) | |
download | i3-config-5a2afa1332cdbb71b4b9f35bc9d129ac8a3c62f9.tar.lz i3-config-5a2afa1332cdbb71b4b9f35bc9d129ac8a3c62f9.tar.xz i3-config-5a2afa1332cdbb71b4b9f35bc9d129ac8a3c62f9.zip |
improve message log
-rw-r--r-- | install.sh | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -27,24 +27,24 @@ do fi # Install i3config - printf '\e[1;32m%s\e[1;36m%s\e[m\n' '=> ' 'cloning i3config' + printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Cloning i3config...' '\e[m' git clone "$URL" "/tmp/i3config/" --depth=1 - printf '\e[1;32m%s\e[1;36m%s\e[m\n' '=> ' 'copying images' + printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying images...' '\e[m' cp -rv /tmp/i3config/images "$HOME/.config/i3/" - printf '\e[1;32m%s\e[1;36m%s\e[m\n' '=> ' 'copying scripts' + printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying scripts...' '\e[m' cp -rv /tmp/i3config/scripts "$HOME/.config/i3/" - printf '\e[1;32m%s\e[1;36m%s\e[m\n' '=> ' 'copying i3 config' + printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying i3-config...' '\e[m' for i in config i3blocks.conf; do install -m644 -v /tmp/i3config/$i "$HOME/.config/i3/$i" done - printf '\e[1;32m%s\e[1;36m%s\e[m\n' '=> ' 'copying conky' + printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying conky...' '\e[m' install -m644 -v /tmp/i3config/tmp/conky.conf "$HOME/.config/conky/" - printf '\e[1;32m%s\e[1;36m%s\e[m\n' '=> ' 'copying fontawesome' + 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/" # clean up temp files |