mahbinstuff/pickfontterm.sh
2015-11-12 21:59:21 +02:00

30 lines
1.2 KiB
Bash
Executable file

#!/bin/zsh
# 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 | sort |dmenu -i -l 25 -fn mOsOul -p Font`
SIZE=`echo 10,12,14,16,9,8,72 | sed s/,/\\\n/g | dmenu -p Size -fn mOsOul-16 -sb orange -sf navy`
if [ "$PICK" ]; then
FONT=`echo $PICK | cut -d: -f2 | sed -e "s/^ /xft:/"`
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 ))
DASHADE=$(( $RANDOM % 50 ))
# DASHADE=$(( $DAFADE + 75 ))
#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 \
urxvtc -bc -rv -tr -sb +sr -g 80x42 -tint "$DACOL" -fade "$DAFADE" \
-fadecolor "$FADECOLOR" -tn xterm-256color -cr green -sh "$DASHADE" \
-fn "$FONT-$SIZE"
fi