sin committed Bump copyright yearLatest: ffd423c on 1/4/2019, 7:31:18 PM | |
📄 | LICENSE |
📄 | Makefile |
📄 | README |
📄 | config.def.h |
📄 | mktest.sh |
📄 | noice.1 |
📄 | noice.c |
📄 | strlcat.c |
📄 | strlcpy.c |
📄 | util.h |
README
1 | __ |
2 | ___ ___ /\_\ ___ __ |
3 | /' _ `\ / __`\/\ \ /'___\ /'__`\ |
4 | /\ \/\ \/\ \L\ \ \ \/\ \__//\ __/ |
5 | \ \_\ \_\ \____/\ \_\ \____\ \____\ |
6 | \/_/\/_/\/___/ \/_/\/____/\/____/ |
7 | -- by lostd and sin |
8 | ======================================================= |
9 | |
10 | |
11 | What is it? |
12 | =========== |
13 | |
14 | noice is a small curses-based file browser. |
15 | It was first developed to be used with a TV remote control for a media |
16 | center solution. |
17 | |
18 | |
19 | Getting started |
20 | =============== |
21 | |
22 | Get the latest version from the git-repository; build and install it. Run |
23 | noice in a directory to display its content in the form of a list, where |
24 | each line is a file or directory. The currently selected item will be |
25 | preceded with a " > " by default. |
26 | |
27 | For more information refer to the manpage. |
28 | |
29 | |
30 | Building |
31 | ======== |
32 | |
33 | To build noice you need a curses implementation available. In most |
34 | cases you just do: |
35 | |
36 | make |
37 | |
38 | It is known to work on OpenBSD, NetBSD, FreeBSD, DragonFly BSD, Linux, OSX, |
39 | IRIX 6.5, Haiku and Solaris 9. Some notes for building on certain systems |
40 | follow. |
41 | |
42 | * IRIX 6.5: |
43 | Tested with gcc from http://freeware.sgi.com/. |
44 | |
45 | make CC="gcc" LDLIBS="-lgen -lcurses" |
46 | |
47 | * Haiku: |
48 | |
49 | make LDLIBS="-lncurses" |
50 | |
51 | * Solaris 9: |
52 | Tested with gcc from http://www.opencsw.org/. |
53 | |
54 | export PATH=/usr/ccs/bin:/opt/csw/bin:$PATH |
55 | make CC="gcc" |
56 | |
57 | |
58 | Contact |
59 | ======= |
60 | |
61 | To report bugs and/or submit patches, you can reach us through |
62 | irc.2f30.org at #2f30. |
63 |
Built with git-ssb-web