Terminal: Difference between revisions

From OLPC
Jump to navigation Jump to search
mNo edit summary
(rm/home/olpc/.sugar/default/config)
Line 8: Line 8:
{{olpcboxbottom}}
{{olpcboxbottom}}


= Terminal =
= Terminal =


The Terminal activity provides a simple interactive shell prompt.
The Terminal activity provides a simple interactive shell prompt.

Revision as of 00:28, 29 November 2008

   HowTo [ID# 183054]  +/-  
Activity-terminal.svg This activity was core

Terminal

The Terminal activity provides a simple interactive shell prompt.

For information on using Terminal, see Terminal Activity in the XO Support FAQ.

Screenshots

Terminal-screenshot-1.jpg

How to Install

Download this .xo file using the Browse activity: Terminal-19.xo

Feature requests

When I use fullscreen mode in Terminal (after pressing alt-enter), the escape key exits fullscreen mode. This is particularly annoying if I am in vi, where escape is used a lot.

Here is what I've changed in /usr/lib/python25/site-packages/sugar/graphics/window.py to get this working:

214,215c214
<             self.props.enable_fullscreen_mode and \
<             self.get_title() != 'Terminal Activity':
---
>             self.props.enable_fullscreen_mode:

--Riv 08:00, 8 October 2008 (UTC)