mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
12 lines
175 B
Bash
12 lines
175 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
git clone https://github.com/13-CF/afetch
|
||
|
cd afetch || exit 1
|
||
|
|
||
|
# Display colors
|
||
|
sed -i '13s/false/true/' src/config.h
|
||
|
make
|
||
|
|
||
|
mv -fv afetch ~/.local/bin/afetch
|
||
|
cd ..
|