From 823010cd2d08c492419000932c37f08dd28f527d Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Mon, 26 May 2025 19:55:15 -0300 Subject: src/nicely: Increase nice(1) value from 19 to 99 POSIX.1-2008 says: > Historical systems have frequently supported the up > to 20. Since there is no error penalty associated with guessing a > number that is too high, users without access to the system > conformance document (to see what limits are actually in place) could > use the historical 1 to 20 range or attempt to use very large numbers > if the job should be truly low priority. --- src/nicely | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nicely b/src/nicely index cf3c72d..601603e 100755 --- a/src/nicely +++ b/src/nicely @@ -2,4 +2,4 @@ set -eu # FIXME: ionice(1) isn't POSIX, make a version of if that is -exec ionice -c3 nice -n19 "$@" +exec ionice -c3 nice -n99 "$@" -- cgit v1.2.3