2013-09-01 12:30:31 -04:00
|
|
|
#!/bin/sh
|
2013-09-01 12:41:26 -04:00
|
|
|
# Copyright © 2013, Bradley M. Kuhn
|
|
|
|
|
|
|
|
|
|
# The copyright holders wish that this document could be placed into the public
|
|
|
|
|
# domain. However, should such a public domain dedication not be possible, the
|
|
|
|
|
# copyright holders grant a waiver and/or license under the terms of CC0-1.0, as
|
|
|
|
|
# published by Creative Commons, Inc. A copy of CC0-1.0 can be found in the
|
|
|
|
|
# same repository as this README.md file under the filename CC0-1.0.txt. If
|
|
|
|
|
# this document has been separated from the repository, a copy of CC0-1.0 can
|
|
|
|
|
# be found on Creative Commons' website at:
|
|
|
|
|
# http://creativecommons.org/publicdomain/zero/1.0/legalcode).
|
2013-09-01 12:30:31 -04:00
|
|
|
|
2013-09-01 12:54:19 -04:00
|
|
|
RUNNING_DIR=$HOME/tmp/.conky-running-temp-files
|
|
|
|
|
|
|
|
|
|
cd $RUNNING_DIR
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
/bin/mkdir -p $RUNNING_DIR
|
|
|
|
|
cd $RUNNING_DIR
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
echo "$0: FAILED to create and/or enter $RUNNING_DIR: $! ... Giving up!"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
2013-09-01 12:30:31 -04:00
|
|
|
sleep 10
|
2013-10-08 15:31:26 -04:00
|
|
|
nice -n 15 ionice -c 3 /usr/bin/conky -d -c $HOME/Files/Public-Configuration/left.conkyrc
|
2013-09-01 12:30:31 -04:00
|
|
|
sleep 3
|
2013-10-08 15:31:26 -04:00
|
|
|
nice -n 15 ionice -c 3 /usr/bin/conky -d -c $HOME/Files/Public-Configuration/right.conkyrc
|
2013-09-01 12:30:31 -04:00
|
|
|
sleep 3
|
2025-12-09 11:33:57 -08:00
|
|
|
#nice -n 15 ionice -c 3 /usr/bin/conky -d -c $HOME/Files/Public-Configuration/center.conkyrc
|
|
|
|
|
#sleep 3
|
2013-10-08 15:31:26 -04:00
|
|
|
nice -n 15 ionice -c 3 /usr/bin/conky -d -c $HOME/Files/Public-Configuration/bottom-right.conkyrc
|
2013-09-01 12:30:31 -04:00
|
|
|
sleep 3
|
2013-10-08 15:31:26 -04:00
|
|
|
nice -n 15 ionice -c 3 /usr/bin/conky -d -c $HOME/Files/Public-Configuration/bottom-left.conkyrc
|
2013-09-01 12:53:10 -04:00
|
|
|
exit 0
|