#!/bin/bash

DOCKED=$(cat /sys/devices/platform/dock.0/docked)
if [ "$DOCKED" == "1" ]; then
	FONTSIZE="12"
else
	FONTSIZE="10"
fi

echo "$*" | grep -q "xtermright"
if [ "$?" == "0" ]; then
	FONTSIZE="10"

fi

exec xterm -tn xterm-256color -bc -fg grey90 -bg black \
	+sb -fa 'DejaVu LGC Sans Mono' -fs $FONTSIZE $*

