commit d190b6b63e51e1111419fb68c088064d97fbb84a Author: Jerry Tumsfeld Date: Sun Nov 18 18:49:48 2012 +0200 initial commit... diff --git a/README b/README new file mode 100644 index 0000000..17b9938 --- /dev/null +++ b/README @@ -0,0 +1,14 @@ +Stuff. +Stuff I use, which I continue to update + * and then have to recreate on another box + * or have to copy from the work box + * or all sorts of similar loss of time/debugging. + +DMG's fonts are here also ( http://www.trueschool.se ) + +my "randterm" and "amigaterm2" term scripts (urxvt) + +my awesome configstuffs (nothing huge, 3 edits or so) + +and as I add stuff I may comment... + diff --git a/amigaterm.sh b/amigaterm.sh new file mode 100755 index 0000000..6321635 --- /dev/null +++ b/amigaterm.sh @@ -0,0 +1,2 @@ +#!/bin/sh +~/bin/amigaterm2.sh 12 navy 80 orange green $@ diff --git a/amigaterm2.sh b/amigaterm2.sh new file mode 100755 index 0000000..707666b --- /dev/null +++ b/amigaterm2.sh @@ -0,0 +1,34 @@ +#!/bin/bash +# help shit +if [[ $1 == '-h' ]]; then + echo Help: $0 fontsize tintcolor fadepercent fadecolor cursorcolor extrashit +else +#TP="xft:TopazPlus a600a1200a4000-$1" + TP="xft:TopazPlus a600a1200a4000-$1:antialias=false" + PN="xft:P0T\-NOoDLE-$1" + MS="xft:mOsOul-$1" + MK="xft:Microknight-$1" + TINTCOLOR=$2 + FADEPERCENT=$3 + FADECOLOR=$4 + CURSORCOLOR=$5 +# get rid of these arguments so we can do the rest at the end + shift 5 +echo urxvtc -fn "$TP" -fi "$PN" -fb "$MS" -fbi "$MK" \ + -tint "$TINTCOLOR" -fade "$FADEPERCENT" \ + -fadecolor "$FADECOLOR" -cr "$CURSORCOLOR" \ + -rv -tr -sb -sr -g 80x24 -tn "xterm-256color" $@ + + urxvtc -fn "$TP" -fi "$PN" -fb "$MS" -fbi "$MK" \ + -tint "$TINTCOLOR" -fade "$FADEPERCENT" \ + -fadecolor "$FADECOLOR" -cr "$CURSORCOLOR" \ + -rv -tr -sb -sr -g 80x24 -tn "xterm-256color" $@ + + if [[ $? != 0 ]]; then + urxvtd -f -o + urxvtc -fn "$TP" -fi "$PN" -fb "$MS" -fbi "$MK" \ + -tint "$TINTCOLOR" -fade "$FADEPERCENT" \ + -fadecolor "$FADECOLOR" -cr "$CURSORCOLOR" \ + -rv -tr -sb -sr -g 80x24 -tn "xterm-256color" $@ + fi +fi diff --git a/pickfontterm.sh b/pickfontterm.sh new file mode 100755 index 0000000..2afd9c0 --- /dev/null +++ b/pickfontterm.sh @@ -0,0 +1,26 @@ +#!/bin/bash +# this may not work any longer with the way that arch has +# redone the fc-list bit, if that's the case and you feel +# like fixing it, fix it... + +PICK=`fc-list | dmenu -i -l 25 -fn mOsOul -p Font` +if [ "$PICK" ]; then + FONT=`echo $PICK | sed -e "/^.*/s/^/xft:/"| sed -e "s/\:sty.*//"` + COLORS=('dodgerblue' 'chartreuse' 'aliceblue' 'forestgreen' 'burlywood' 'dark goldenrod' 'indian red' 'firebrick' 'Gainsboro' 'Misty Rose' 'Peach Puff' 'Seashell' 'Slate Gray' 'Tan' 'Tomato') + DACOLN=$(( $RANDOM % ${#COLORS} )) + FADECOLN=$(( $RANDOM % ${#COLORS} )) + DACOL=${COLORS[$DACOLN]} + FADECOLOR=${COLORS[$FADECOLN]} + DAFADE=$(( $RANDOM % 25 )) + DAFADE=$(( $DAFADE + 25 )) +#echo $DACOL : $DAFADE +# amigaterm2.sh fontsize tintcolor fadepercent fadecolor cursorcolor extrashit +#echo ---- +#echo urxvt -bc -rv -tr -sb +sr -g 80x42 -tint $TINTCOLOR -fade $DAFADE -fadecolor $FADECOLOR -tn xterm-256color -cr green -fn $FONT +#echo ---- + urxvt -bc -rv -tr -sb +sr -g 80x42 -tint "$DACOL" -fade "$DAFADE" -fadecolor "$FADECOLOR" -tn xterm-256color -cr green -fn "$FONT" +fi + + + + diff --git a/randterm.sh b/randterm.sh new file mode 100755 index 0000000..ff1dd24 --- /dev/null +++ b/randterm.sh @@ -0,0 +1,16 @@ +#!/bin/sh +COLORS=("dodgerblue" "chartreuse" "aliceblue" "forestgreen" "burlywood" "dark goldenrod" "indian red" "firebrick" "Gainsboro" "Misty Rose" "Peach Puff" "Seashell" "Slate Gray" "Tan" "Tomato") +DACOLN=$(( $RANDOM % ${#COLORS} )) +DACOL=${COLORS[$DACOLN]} + +DAFADE=$(( 25 + ($RANDOM % 25 ) )) + +DAFADEN=$(( $RANDOM % ${#COLORS} )) +DAFCOL=${COLORS[$DAFADEN]} + +DASHP=$(( $RANDOM % 25 )) +DASHP=$(( $DASHP + 10 )) + +#DAFADE=$(( $DAFADE + 50 )) +#Help: /home/andrew/bin//amigaterm2.sh fontsize tintcolor fadepercent fadecolor cursorcolor extrashit +amigaterm2.sh 12 "$DACOL" "$DAFADE" "$DAFCOL" green -sh "$DASHP" "$@" diff --git a/t!s-af10.zip b/t!s-af10.zip new file mode 100644 index 0000000..528b215 Binary files /dev/null and b/t!s-af10.zip differ