mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-28 18:28:35 -05:00
16 lines
217 B
Bash
16 lines
217 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# You need ncurses-devel
|
||
|
|
||
|
git clone https://github.com/runrin/tt.git
|
||
|
cd tt || exit
|
||
|
|
||
|
make
|
||
|
chmod 755 tt
|
||
|
if command -v doas >/dev/null
|
||
|
then
|
||
|
doas -- mv -fv tt /usr/bin/tt
|
||
|
else
|
||
|
sudo mv -fv tt /usr/bin/tt
|
||
|
fi
|