Skip to content

Commit f5f9dd1

Browse files
committed
usage message update and README cleanup
1 parent 0da56b9 commit f5f9dd1

File tree

2 files changed

+29
-21
lines changed

2 files changed

+29
-21
lines changed

README

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,43 +9,51 @@ BACKGROUND
99

1010
This project was inspired by Dylan Arap's POSIX shell script, okpal [0]. This
1111
application has similar functionality to okpal but is designed with execution
12-
speed in mind. There are currently >280 light and dark palettes offered at
12+
speed in mind. There are currently 293 light and dark palettes offered at
1313
this time within this package (with more to come).
1414

1515

16-
INSTALLATION
16+
COMPATIBILITY
17+
-------------
18+
19+
Compatibility with the following terminator-emulators on KISS Linux have been
20+
tested at this time:
21+
22+
- simple terminal, st [2]
23+
- alacritty [3]
24+
25+
26+
DEPENDENCIES
1727
------------
1828

1929
Other than a terminal emulator and C compiler (e.g. gcc), the application has
2030
no other dependencies.
2131

22-
- Building and installing from source:
2332

24-
$ git clone https://github.com/mcpcpc/kfc.git
25-
$ cd kfc/
26-
$ make
27-
$ make install
33+
INSTALLATION
34+
------------
2835

29-
- Installing on KISS Linux:
36+
Building and installing from source:
3037

31-
$ kiss b kfc && kiss i kfc
38+
$ git clone https://github.com/mcpcpc/kfc.git
39+
$ cd kfc/
40+
$ make
41+
$ make install
3242

33-
Compatibility with the following terminator emulators on KISS Linux have been
34-
tested:
43+
Installing on KISS Linux:
3544

36-
- simple terminal, st [2]
37-
- alacritty [3]
45+
$ kiss b kfc && kiss i kfc
3846

3947

4048
USAGE
4149
-----
4250

43-
kfc [-s palette|-L|-r] [l|-v|-p]
51+
kfc [-l|-L|-r|-s palette] [|-v|-p]
52+
-l List palettes
53+
-L Set light themes (modifier for -s/-r/-l)
54+
-r Select a random palette
4455
-s palette Select a palette
45-
-l List all palettes
4656
-p Print current palette
47-
-r Select a random palette
48-
-L Set light themes (modifier for -s/-r)
4957
-h Show this information
5058
-v Show version information
5159

kfc.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,12 @@ int
172172
print_usage(void)
173173
{
174174
printf("\
175-
usage: kfc [-s palette|-r|-L] [l|-v|-p]\n \
176-
-s palette Select a palette\n \
175+
usage: kfc [-l|-L|-r|-s palette] [-v|-p]\n \
177176
-l List all palettes\n \
178-
-p Print current palette\n \
179-
-r Select a random palette\n \
180177
-L Set light themes (modifier for -s/-r)\n \
178+
-r Select a random palette\n \
179+
-s palette Select a palette\n \
180+
-p Print current palette\n \
181181
-h Show this information\n \
182182
-v Show version information\n");
183183
return 0;

0 commit comments

Comments
 (0)