mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
4a8718a544
And some clean up
11 lines
193 B
Bash
Executable File
11 lines
193 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Needs musl-fts, ncurses-devel
|
|
|
|
git clone https://github.com/FollieHiyuki/nnn.git
|
|
cd nnn
|
|
|
|
LDLIBS=-lfts make O_NERD=1 O_NOBATCH=1 O_GITSTATUS=1 PREFIX=$HOME/.local install
|
|
|
|
cd ..
|