diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-09-21 09:02:05 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-09-21 09:02:05 -0300 |
commit | e1f2e7910602df6aad5c0f6a82e8458d54e61280 (patch) | |
tree | 64bfe9881b30a8dc9b2fe412221c8f1d2348eebe | |
parent | 524edea420a1797ecfa3a68f44879f5214ca8a27 (diff) | |
download | luakit-e1f2e7910602df6aad5c0f6a82e8458d54e61280.tar.gz luakit-e1f2e7910602df6aad5c0f6a82e8458d54e61280.tar.bz2 |
Do not check for unique instance
-rw-r--r-- | config.dot/luakit.link/rc.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config.dot/luakit.link/rc.lua b/config.dot/luakit.link/rc.lua index 26a7c2c..1014f36 100644 --- a/config.dot/luakit.link/rc.lua +++ b/config.dot/luakit.link/rc.lua @@ -4,7 +4,9 @@ require "lfs" -require "unique_instance" +-- This might cause confusing behaviors with used along with session management +-- and one want to be able to run simultaneous instances with different sessions +--require "unique_instance" -- Set the number of web processes to use. A value of 0 means 'no limit'. luakit.process_limit = 4 |