Fixed major flushing to disk issue.

This commit is contained in:
Maxim Stewart 2016-11-06 20:12:05 -06:00
parent 1252ec447f
commit 0aa272bb90
5 changed files with 20 additions and 8 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
### nohup is needed to keep child process alive from java's
xterm -e ~/.animatedBGstarter.sh
xterm -e ~/.animatedBGstarter2.sh
xterm -e nohup ~/.animatedBGstarter.sh >/dev/null 2>&1
xterm -e nohup ~/.animatedBGstarter2.sh >/dev/null 2>&1

View File

@ -1,5 +1,5 @@
#!/bin/bash
### nohup is needed to keep child process alive from java's
xterm -e ~/.animatedBGstarter.sh
xterm -e ~/.animatedBGstarter2.sh
xterm -e nohup ~/.animatedBGstarter.sh >/dev/null 2>&1
xterm -e nohup ~/.animatedBGstarter2.sh >/dev/null 2>&1

View File

@ -1,5 +1,5 @@
#!/bin/bash
### nohup is needed to keep child process alive from java's
xterm -e ~/.animatedBGstarter.sh
xterm -e ~/.animatedBGstarter2.sh
xterm -e nohup ~/.animatedBGstarter.sh >/dev/null 2>&1
xterm -e nohup ~/.animatedBGstarter2.sh >/dev/null 2>&1

View File

@ -1,5 +1,5 @@
#!/bin/bash
### nohup is needed to keep child process alive from java's
xterm -e ~/.animatedBGstarter.sh
xterm -e ~/.animatedBGstarter2.sh
xterm -e nohup ~/.animatedBGstarter.sh >/dev/null 2>&1
xterm -e nohup ~/.animatedBGstarter2.sh >/dev/null 2>&1

12
src/debs/build.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
function main() {
for i in `ls`; do
if [[ -d "${i}" ]]; then
dpkg --build "${i}"
else
echo "Not a dir."
fi
done
}
main;