diff --git a/src/comfortable-swipe.cpp b/src/comfortable-swipe.cpp
deleted file mode 100644
index 14ce492..0000000
--- a/src/comfortable-swipe.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "comfortable-swipe.hpp"
-/* MAIN DRIVER FUNCTION */
-
-int main(int argc, char** args) {
- if (argc > 1) {
- string arg = args[1];
- // select based on argument
- if (arg == "start") service::start();
- else if (arg == "stop") service::stop();
- else if (arg == "restart") service::restart();
- else if (arg == "buffer") service::buffer();
- else if (arg == "autostart") service::autostart();
- else service::help();
- } else {
- service::help();
- }
-}
\ No newline at end of file
diff --git a/src/comfortable-swipe.hpp b/src/comfortable-swipe.hpp
deleted file mode 100644
index 9b87052..0000000
--- a/src/comfortable-swipe.hpp
+++ /dev/null
@@ -1,439 +0,0 @@
-/*
-Comfortable Swipe
-by Rico Tiongson
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see .
-*/
-
-#include
-#include
-#include
-#include