dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 9c9db90168313406c033c987a3551c5cac25df17
parent d0c505d8d0976e2bbdd3280b35835ddd7c570160
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Sat, 25 May 2019 09:46:28 +0200

Also build nnn and make install with sudo

Diffstat:
M.commands.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.commands.sh b/.commands.sh @@ -183,10 +183,10 @@ t-remove-all() { } m-all-sl() { - for d in ~/lib/{dwm,slstatus,st,surf,tabbed}; do + for d in ~/lib/{dwm,slstatus,st,surf,tabbed,nnn}; do echo echo "## Building $d" - cd "$d" && make clean; make install + cd "$d" && make clean; sudo make install done cd - }