aboutsummaryrefslogtreecommitdiffstats
path: root/box.c
diff options
context:
space:
mode:
Diffstat (limited to 'box.c')
-rw-r--r--box.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/box.c b/box.c
new file mode 100644
index 0000000..3a62deb
--- /dev/null
+++ b/box.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+int main(int argc, char **argv)
+{
+ if(argc != 2){
+ printf("\33[?25l");
+ } else {
+ printf("\33[?25h");
+ }
+}