20090730

odt2doc Converter appears in my Ubuntu

Some heretics asking me hard to make non-kosher formats of documents I am usually writing in *.odt
So I am thinking it will not be so sinfully to make some files in *.doc, when some heretics can not understand how it is fun and rightful to use *.odt files. Ubuntu is humane as we all know and maybe my actions will make them more tolerant and they become new adepts of Ubuntology.

# At first I installed unoconv
sudo aptitude install unoconv

#Then I made nautilus script:

#!/bin/bash

# AUTHOR: (c) Ivan Ivanoff
# VERSION: 1.0
# LICENSE: GPL (http://www.gnu.org/licenses/gpl.html)
# REQUIRES: unoconv
# NAME: odt2doc
# DESCRIPTION: Created 20090731

# Check that the user select files (subdirectories are forbidden)
for File in "$@"
do
if [ -f "$File" ]; then
ext=${File##*.}
if [ "$ext" == "odt" ]; then
unoconv -f doc "$File" 2>&1 | zenity --width=300 --percentage=100 --progress --title "Processing documents" --text "Converting to DOC format\.\.\." --pulsate --auto-close
fi
fi
done
zenity --info --title "Processing documents" --width=300 --text "Done, my Lord\!"

And when I put this in ~/.gnome2/nautilus-scripts/odt2doc.sh I can convert files just opening context menu with RMB.

PROFIT!

My Intel 4500HD Super Video

#Here how to get good performance and DRI2 and to be happy Ubuntu user!
#
#Just create
sudo nano /etc/apt/sources.list.d/intel-bleeding-edge-of-progress.list
#with those lines:
deb http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu jaunty main
deb-src http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu jaunty main
#Then we need special PGP key for this repo:
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com AF1CDFA9
#And as usual:
sudo apt-get update
sudo apt-get dist-upgrade
#Do not forget to change Accelaration Method:
sudo nano /etc/X11/xorg.conf
#with this in Device Section:
Option "AccelMethod" "UXA"
...
PROFIT!