I made small script which let me choose what am i want to mining after running script.
Also those are best for me settings which give me 736kH/s without overvolting and with heat protection (increasing fan speed to max when its too hot, then lowering gpu clock and finally cutoff whole card)
Also if you find this usefull please send me as much LTC or BTC as you can Even 0,1LTC or 0,01BTC if you cant more
Reply if you like this script and leave comment if you have something to add
BTC: 1ERRVbvV23h51ScH73nQr6TDmaieKNuuVD
LTC: LLEazpws2BjSLZy4aSWbi9U2Lgih4a4gnp
cgminer version 2.11.3 - Started: [2013-06-04 23:15:59]
--------------------------------------------------------------------------------
(5s):1.473M (avg):1.468Mh/s | Q:2805 A:0 R:0 HW:0 E:0% U:0.0/m
ST: 5 SS: 0 DW: 0 NB: 1 LW: 0 GF: 0 RF: 0 WU: 0.0
Connected to 8.8.8.8 diff 137K without LP as user xxx
Block: d277acad0b29ff2c... Diff:137K Started: [23:15:58] Best share: 0
--------------------------------------------------------------------------------
[P]ool management [G]PU management [S]ettings [D]isplay options [Q]uit
GPU 0: 73.0C 3041RPM | 736.2K/735.4Kh/s | A:0 R:0 HW:0 U:0.00/m I:13
GPU 1: 73.0C 3027RPM | 735.8K/734.3Kh/s | A:0 R:0 HW:0 U:0.00/m I:13
--------------------------------------------------------------------------------
[2013-06-04 23:15:57] Started cgminer 2.11.3
[2013-06-04 23:15:58] Probing for an alive pool
#!/bin/bash
echo ""
echo "What do you want mining?"
echo ""
select l in AMC DGC-solo DGC-pool LTC-pool QUIT
do
case "$l" in
"AMC") USER="xxx" PASS="xxx" HOST="8.8.8.8:9057" ;;
"DGC-solo") USER="xxx" PASS="xxx" HOST="8.8.8.8:7001" ;;
"DGC-pool") USER="pokemon" PASS="xxx" HOST="stratum+tcp://dgc.epools.org:3338" ;;
"LTC-pool") USER="pokemon" PASS="xxx" HOST="http://ltcmine.ru:3333" ;;
"QUIT") exit ;;
*) echo "Invalid Option, Quitting" exit ;;
esac
break
done
cd ~/cgminer
export DISPLAY=:0
export GPU_MAX_ALLOC_PRECENT=100
export GPU_USE_SYNC_OBJECTS=0
aticonfig --od-enable
./cgminer --scrypt \
-o $HOST -u $USER -p $PASS \
-s 1 --expiry 1 --queue 0 \
-I 13 -w 256 -g 2 --shaders 2048 --thread-concurrency 8192 --lookup-gap 2 \
--auto-gpu --gpu-engine 1000-1047 --gpu-memclock 1500 \
--auto-fan --temp-target 75 --temp-overheat 85 --temp-cutoff 88 2>logfile.txt