diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/leap/bitmask/app.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/leap/bitmask/app.py b/src/leap/bitmask/app.py index a1f3a69f..124671b3 100644 --- a/src/leap/bitmask/app.py +++ b/src/leap/bitmask/app.py @@ -233,6 +233,11 @@ def main():          # We don't even have logger configured in here          print "Could not ensure server: %r" % (e,) +    PLAY_NICE = os.environ.get("LEAP_NICE") +    if PLAY_NICE and PLAY_NICE.isdigit(): +        nice = os.nice(int(PLAY_NICE)) +        logger.info("Setting NICE: %s" % nice) +      # And then we import all the other stuff      # I think it's safe to import at the top by now -- kali      from leap.bitmask.gui import locale_rc | 
