File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ kc: kc.c kc.h Makefile
10
10
11
11
install : all
12
12
install -Dm755 kc $(DESTDIR )$(BINDIR ) /kc
13
- mkdir -p $(DESTDIR ) /etc /kc
14
- cp -r palettes $(DESTDIR ) /etc /kc
13
+ mkdir -p $(DESTDIR ) /usr/share /kc
14
+ cp -r palettes $(DESTDIR ) /usr/share /kc
15
15
16
16
uninstall :
17
17
rm -f $(DESTDIR )$(BINDIR ) /kc
18
- rm -rf $(DESTDIR ) /etc /kc
18
+ rm -rf $(DESTDIR ) /usr/share /kc
19
19
20
20
clean :
21
21
rm -f kc * .o
Original file line number Diff line number Diff line change @@ -14,11 +14,10 @@ Linux have been tested at this time:
14
14
15
15
- simple terminal, st [2]
16
16
17
- As there are no other dependєncies, other than a C compiler (gcc), this program
18
- should work on distributions other than KISS Linux as well.
17
+ Other than a terminal emulator and C compiler (e.g. gcc), KISS Colors has no other dependencies.
19
18
20
- I apologize for the "ugliness" of the code at this time. I hope to address this
21
- in future iterations .
19
+ Note: I apologize for the "ugliness" of the code at this time. I hope to address this
20
+ in future commits .
22
21
23
22
24
23
INSTALLATION
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ select_palette(void)
37
37
38
38
if (p .fp == NULL )
39
39
{
40
- fprintf (stderr , "Selected palette does not exist. Do nothing \n" );
40
+ fprintf (stderr , "Selected palette does not exist.\n" );
41
41
return 1 ;
42
42
}
43
43
@@ -203,7 +203,7 @@ main(int argc, char **argv)
203
203
p .MODE = "light" ;
204
204
break ;
205
205
case 'v' :
206
- printf ("0.0.5 \n" );
206
+ printf ("0.0.6 \n" );
207
207
break ;
208
208
case 'h' :
209
209
p .errf ++ ;
You can’t perform that action at this time.
0 commit comments