Compare commits

...

3 Commits
v2.1.0 ... main

Author SHA1 Message Date
AngelJumbo
1a7b55d715 Cross-platform install 2025-03-23 07:33:31 -05:00
AngelJumbo
cfed09d5ba
Merge pull request #5 from sheeeng/fix/return-type-warning
fix: return type warning
2024-10-11 19:22:49 -05:00
Leonard Sheng Sheng Lee
3fc48166fb
fix: return type warning
Signed-off-by: Leonard Sheng Sheng Lee <leonard.sheng.sheng.lee@gmail.com>
2024-10-11 10:34:31 +02:00
2 changed files with 7 additions and 4 deletions

View File

@ -273,6 +273,7 @@ short next_color(short current){
return colors[(i+1)%8];
}
}
return colors[0];
}
void fix_rim_color(){

View File

@ -9,8 +9,10 @@ clean:
.PHONY: install
install: lavat
install -D lavat $(DESTDIR)$(PREFIX)/bin/lavat
mkdir -p $(PREFIX)/bin
install lavat $(PREFIX)/bin/lavat
.PHONY: uninstall
uninstall:
$(RM) $(PREFIX)/bin/lavat
.PHONY: unistall
unistall:
$(RM) $(DESTDIR)$(PREFIX)/bin/lavat