diff --git a/readme.md b/readme.md index 827b69b..257967f 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,7 @@ # Sybar -*Shut your bitch ass (ba)r (very funny name)* -sybar is a CC0-licensed program which outputs the time and date however you want. Mainly made to use with dwm. +Shut your bitch ass (ba)r (very funny name) + +WIP ## Usage ``` diff --git a/src/main.cpp b/src/main.cpp index 5022d40..c4d991a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,5 @@ #include #include -#include int main(int argc, char* argv[]) { while (true) { @@ -10,6 +9,5 @@ int main(int argc, char* argv[]) { char options[128]; strftime(output, 50, argv[1], &datetime); std::cout << output << std::endl; - std::sleep(0.1) } }