#!/bin/bash
#########################################################
# 							#
# This is BashStyle-NG 7.3				#
#							#
# Licensed under GNU LESSER GENERAL PUBLIC LICENSE v3	#
#							#
# Copyright 2007 - 2008 Christopher Bratusek		#
#							#
#########################################################

number=$((RANDOM%15+1))

if [[ $number == 1 ]]; then
	export pstyle=separator
elif [[ $number == 2 ]]; then
	export pstyle=vector
elif [[ $number == 3 ]]; then
	export pstyle=clock
elif [[ $number == 4 ]]; then
	export pstyle=clock-ad
elif [[ $number == 5 ]]; then
	export pstyle=dash
elif [[ $number == 6 ]]; then
	export pstyle=job
elif [[ $number == 7 ]]; then
	export pstyle=elite
elif [[ $number == 8 ]]; then
	export pstyle=poweruser
elif [[ $number == 9 ]]; then
	export pstyle=dirks
elif [[ $number == 10 ]]; then
	export pstyle=minimal
elif [[ $number == 11 ]]; then
	export pstyle=dot_prompt
elif [[ $number == 12 ]]; then
	export pstyle=bracket
elif [[ $number == 13 ]]; then
	export pstyle=sepa_ng
elif [[ $number == 14 ]]; then
	export pstyle=quirk
elif [[ $number == 15 ]]; then
	export pstyle=sputnik
fi

