mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-02 04:08:30 -05:00
18 lines
307 B
Bash
18 lines
307 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
# Needs musl-fts, ncurses
|
||
|
|
||
|
git clone https://github.com/FollieHiyuki/nnn.git
|
||
|
cd nnn
|
||
|
|
||
|
export LDLIBS=-lfts
|
||
|
|
||
|
if command -v doas >/dev/null
|
||
|
then
|
||
|
doas -- make O_NERD=1 O_NOBATCH=1 O_GITSTATUS=1 PREFIX=/usr install
|
||
|
else
|
||
|
sudo make O_NERD=1 O_NOBATCH=1 O_GITSTATUS=1 PREFIX=/usr install
|
||
|
fi
|
||
|
|
||
|
cd ..
|