ref: f3afdf563f784c0a5703496f48c1a72dff4617f4
dir: /themez/
#!/bin/rc
if(~ $#* 0){
echo 'Usage: theme [ls|set theme]'
}
comm=$1
switch($comm){
case 'ls'
lc $home/lib/theme/
case 'set'
theme=$2
cat $home/lib/theme/$theme > /dev/theme
}