diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-03-28 19:03:45 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-03-28 19:03:45 -0400 |
commit | 126735cc21e63888fd769f29f5bcc41e3b81e30c (patch) | |
tree | f2e48b83d0fcd1eb79f7d988e1d6f87c49093340 /src/lpm.c | |
parent | 5a05b1a883c932b539fe905f6bab5b1962601c97 (diff) | |
download | lite-xl-plugin-manager-126735cc21e63888fd769f29f5bcc41e3b81e30c.tar.gz lite-xl-plugin-manager-126735cc21e63888fd769f29f5bcc41e3b81e30c.zip |
Suppress the progress bar by default, if we're not connected on a TTY.
Diffstat (limited to 'src/lpm.c')
-rw-r--r-- | src/lpm.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1138,6 +1138,8 @@ int main(int argc, char* argv[]) { lua_setglobal(L, "VERSION"); lua_pushliteral(L, ARCH_PLATFORM); lua_setglobal(L, "PLATFORM"); + lua_pushboolean(L, isatty(fileno(stdout))); + lua_setglobal(L, "TTY"); #if _WIN32 lua_pushliteral(L, "\\"); #else |