-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
21 lines (18 loc) · 777 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
NCurses Owner Tree
==================
This application is basically a copy of ncdu app but written in Common Lisp and
in addition to showing size it also shows size split by owner.
It had much less features than original ncdu: no ability to delete files/folders
(hence no ability to refresh data), also instead of using arrow trees for
navigation it uses keys 'jk' for moving up/down and 'io' for moving in folder
and out of folder (this is due to impossibility to assign key bindings to
arrows and Enter).
Running
=======
Make sure the project is in your ASDF path, for example put it into ~/quicklisp/local-projects.
Run SBCL (or CCL (todo)):
>>> (asdf:load-system :cl-nc-ownertree)
or
>>> (quicklisp:quickload :cl-nc-ownertree)
then
>>> (cl-nc-ownertree:main #P"<path>")