// loop for use in .xinitrc // compile with gcc -o xinitrc xinitrc.c #include int main(int argc, char** argv) { while (1) { sleep(60); } return 0; }