bindkey -k k8 hardstatus alwayslastline bindkey -k k9 hardstatus alwaysignore sessionname <%= OPTIONS[:screen_name] %> <% if OPTIONS[:multiuser] %> multiuser on <% OPTIONS[:usernames].each do |username| %> acladd <%= username %> <% end %> <% end %> hardstatus alwayslastline "%{= <%= OPTIONS[:background_color] + OPTIONS[:foreground_color] %>} %-Lw%50>%{= <%= OPTIONS[:background_color] + OPTIONS[:highlight_color] %>}%n%f* %{= <%= OPTIONS[:background_color] + OPTIONS[:foreground_color] %>}%t%+Lw%<" caption splitonly "%{= <%= OPTIONS[:caption_background_color] + OPTIONS[:caption_foreground_color] %>} %-Lw%50>%{= <%= OPTIONS[:caption_background_color] + OPTIONS[:caption_highlight_color] %>}%n%f* %{= <%= OPTIONS[:caption_background_color] + OPTIONS[:caption_foreground_color] %>}%t%+Lw%<" shell <%= OPTIONS[:shell] %> chdir <%= $home %> screen -t logs bash -c 'umask 002;while true;do cd <%= $home %>/log; <%= OPTIONS[:shell] %>;sleep 1;done' screen -t irb bash -c 'umask 002;while true;do script/console <%= OPTIONS[:environment] %>;sleep 1;done' screen -t ide bash -c 'umask 002;while true;do vim -c "cd <%= $home %>" -c "e .";sleep 1;done' <% if not OPTIONS[:reports_base].nil? %> screen -t reports bash -c 'umask 002;while true;do vim -c "cd <%= OPTIONS[:reports_base] %>" -c "e .";sleep 1;done' <% end %> screen -t controllers bash -c 'umask 002;while true;do vim -c "cd <%= OPTIONS[:controllers_base] %>" -c "e .";sleep 1;done' screen -t views bash -c 'umask 002;while true;do vim -c "cd <%= OPTIONS[:views_base] %>" -c "e .";sleep 1;done' screen -t helpers bash -c 'umask 002;while true;do vim -c "cd <%= OPTIONS[:helpers_base] %>" -c "e .";sleep 1;done' screen -t models bash -c 'umask 002;while true;do vim -c "cd <%= OPTIONS[:models_base] %>" -c "e .";sleep 1;done' screen -t svkwork bash -c 'umask 002;while true; do SVKROOT=<%= ENV['SVKROOT'] || (ENV['REAL_HOME'] + "/.svk") %> RAILS_ENV=<%= OPTIONS[:environment] %> <%= OPTIONS[:shell] %>;sleep 1;done' screen -t script bash -c 'umask 002;while true;do RAILS_ENV=<%= OPTIONS[:environment] %> <%= OPTIONS[:shell] %>;sleep 2;done' screen -t tests bash -c 'umask 002;while true;do cd <%= OPTIONS[:test_base] %>;RAILS_ENV=<%= OPTIONS[:environment] %> <%= OPTIONS[:shell] %>;sleep 1;done'