From 01481500d7d57720713497302ff08857f504bf07 Mon Sep 17 00:00:00 2001 From: Cyryl Plotnicki-Chudyk Date: Sat, 8 Feb 2014 16:26:59 +0100 Subject: [PATCH 1/2] nice launcher added --- tools/launch_nicely.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 tools/launch_nicely.sh diff --git a/tools/launch_nicely.sh b/tools/launch_nicely.sh new file mode 100755 index 00000000..6a2e0646 --- /dev/null +++ b/tools/launch_nicely.sh @@ -0,0 +1,3 @@ +#!/bin/sh +time nice -n 19 ionice -c 3 $1 + From 2e2042f03ecd5e1d2eb2a028ddccf917d95f5a03 Mon Sep 17 00:00:00 2001 From: Cyryl Plotnicki-Chudyk Date: Sat, 8 Feb 2014 16:33:40 +0100 Subject: [PATCH 2/2] launch_nicely now properly passes down all arguments --- tools/launch_nicely.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/launch_nicely.sh b/tools/launch_nicely.sh index 6a2e0646..ab9dcfa7 100755 --- a/tools/launch_nicely.sh +++ b/tools/launch_nicely.sh @@ -1,3 +1,3 @@ #!/bin/sh -time nice -n 19 ionice -c 3 $1 +time nice -n 19 ionice -c 3 "$@"