Removing binary and adding readme and license
This commit is contained in:
parent
5f2f4b62a2
commit
23228e1973
4 changed files with 38 additions and 0 deletions
13
LICENSE.md
Normal file
13
LICENSE.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
Version 2, December 2004
|
||||
|
||||
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim or modified
|
||||
copies of this license document, and changing it is allowed as long
|
||||
as the name is changed.
|
||||
|
||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
24
README.md
Normal file
24
README.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# KEYGOLLER
|
||||
|
||||
Keygoller is a smart text-based AI-powered assistant for you and your keyboard.
|
||||
It brings back the best character of the Internet: Clippy to help you in your
|
||||
daily tasks.
|
||||
|
||||
# Install
|
||||
|
||||
If you have Go installed:
|
||||
|
||||
```go
|
||||
|
||||
go get -u git.postblue.info/chris/keygoller
|
||||
cd keygoller
|
||||
go build
|
||||
sudo ./keygoller
|
||||
|
||||
```
|
||||
|
||||
# Source
|
||||
Original key logger from: https://github.com/MarinX/keylogger under MIT License.
|
||||
|
||||
# License
|
||||
See LICENSE.md
|
BIN
keygoller
BIN
keygoller
Binary file not shown.
|
@ -156,6 +156,7 @@ func (i *InputEvent) KeyRelease() bool {
|
|||
return i.Value == 0
|
||||
}
|
||||
|
||||
// ClippySays is a print function that outputs clippy the message input.
|
||||
func ClippySays(what string) {
|
||||
|
||||
clippy := fmt.Sprintf(` __
|
||||
|
|
Loading…
Reference in a new issue