| The Following User Says Thank You to fate For This Useful Post: | ||
| The Following 4 Users Say Thank You to jebba For This Useful Post: | ||

#!/bin/sh KEYS=`gconftool-2 --get \ /apps/osso/xterm/keys` KEY_LABELS=`gconftool-2 --get \ /apps/osso/xterm/key_labels` echo "Current settings:" echo "KEYS $KEYS" echo "KEY_LABELS $KEY_LABELS" # Default NEW_KEYS="[Tab,Escape,Page_Up,Page_Down]" NEW_KEY_LABELS="[Tab,Esc,PgUp,PgDn]" # Custom # see here for a possible list: # /usr/share/X11/xkb/symbols/nokia_vndr/rx-51 NEW_KEYS="[Tab,Escape,bar,dead_tilde,greater,dead_acute,grave]" NEW_KEY_LABELS="[Tab,Esc,|,~,>,´,\`]" echo "New settings:" echo "KEYS $NEW_KEYS" echo "KEY_LABELS $NEW_KEY_LABELS" gconftool-2 --set -t list --list-type string \ /apps/osso/xterm/keys \ $NEW_KEYS gconftool-2 --set -t list --list-type string \ /apps/osso/xterm/key_labels \ $NEW_KEY_LABELS
| The Following 4 Users Say Thank You to jebba For This Useful Post: | ||
#!/bin/sh
gconftool-2 --set --type bool \
/apps/osso/xterm/reverse \
false
gconftool-2 --set --type string \
/apps/osso/xterm/background \
"#000000"
gconftool-2 --set --type string \
/apps/osso/xterm/foreground \
"#00FF00"
#!/bin/sh
SETTING=`gconftool-2 --get \
/apps/osso/xterm/toolbar`
if [ $SETTING == "true" ]
then NEWSETTING="false"
else NEWSETTING="true"
fi
gconftool-2 --set --type bool \
/apps/osso/xterm/toolbar \
$NEWSETTING
| The Following 12 Users Say Thank You to jebba For This Useful Post: | ||
| The Following 3 Users Say Thank You to kwotski For This Useful Post: | ||
gconftool-2 -s /apps/osso/xterm/key_labels -t list --list-type=string "[Tab,Esc,PgUp,PgDn,|,CR,~,>,']" gconftool-2 -s /apps/osso/xterm/keys -t list --list-type=string "[Tab,Escape,Page_Up,Page_Down,bar,KP_Enter,asciitilde,greater,grave]"
| The Following 2 Users Say Thank You to qole For This Useful Post: | ||