diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-06-20 15:28:05 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-06-20 15:28:05 +0530 |
| commit | aa146c847d7e03881a99382100f1f61e473475c7 (patch) | |
| tree | 7061d727e808e278457b00fa3623d2156dae10a4 /shotkey.c | |
| parent | 353dab50ea72a4c9b013d0305939f241260c4839 (diff) | |
| download | shotkey-aa146c847d7e03881a99382100f1f61e473475c7.tar.gz shotkey-aa146c847d7e03881a99382100f1f61e473475c7.zip | |
Renames project to shotkey
Diffstat (limited to '')
| -rw-r--r-- | shotkey.c (renamed from hotkeythingy.c) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hotkeythingy.c b/shotkey.c index dcbcc08..d839ef4 100644 --- a/hotkeythingy.c +++ b/shotkey.c @@ -48,11 +48,11 @@ void unbind_key(Display *dpy, Window win, unsigned int mod, KeySym key) { int error_handler(Display *disp, XErrorEvent *xe) { switch(xe->error_code) { case BadAccess: - printf("hotkeythingy: [BadAccess] Cant grab key binding. Already grabbed\n"); + printf("shotkey: [BadAccess] Cant grab key binding. Already grabbed\n"); return 0; } - printf("hotkeythingy: Something went wrong\n"); + printf("shotkey: Something went wrong\n"); return 1; } @@ -60,7 +60,7 @@ void spawn(char** command) { if (fork() == 0) { setsid(); execve(command[0], command, environ); - fprintf(stderr, "hotkeythingy: execve %s", command[0]); + fprintf(stderr, "shotkey: execve %s", command[0]); perror(" failed"); exit(0); } |
