diff --git a/source/lunch/app.d b/source/lunch/app.d index 1798009..5c75374 100644 --- a/source/lunch/app.d +++ b/source/lunch/app.d @@ -16,6 +16,10 @@ import lunch.launch;; void _app(string config_toml) { + // Hide the cursor, reveal when exiting + write("\33[?25l"); + scope (exit) write("\33[?25h"); + // Load default config wrapTOML(cast()config, config_toml.parseTOML());