Andrea's Python sorting program for bios can be found locally here:
/research/PyProgram/com_alpha.py
Custom keybindings for shortcuts can be created in the user home profile:
~/.gconf/desktop/gnome/keybindings/custom0/%gconf.xml
The shortcut below uses Ctrl-Shift-T as the keyboard shortcut to sort.
<?xml version="1.0"?> <gconf> <entry name="action" mtime="1362680304" type="string"> <stringvalue>python /export/research/PyProgram/com_alpha.py</stringvalue> </entry> <entry name="name" mtime="1362680304" type="string"> <stringvalue>Organization Alphabetizer</stringvalue> </entry> <entry name="binding" mtime="1358895975" type="string"> <stringvalue><Shift><Control>t</stringvalue> </entry> </gconf>
1) Copy the list we are interested in sorting into memory (ctrl-c)
2) Use the keyboard shortcut, which sorts the list in memory (ctrl-shift-t)
3) Paste the sorted list into text box (ctrl-v)
CategoryITDefunct