Two Tips for setting

###Disable the vim wraping There is a line in ~/.vimrc:

	autocmd FileType text setlocal textwidth=78

comment this line then everything goes OK. ###Change Awesome theme and change the titlebar width Download the 3rd party themes from https://github.com/Morley93/awesome-themes-3.5, then copy them to your own theme location, normally under the “/usr/share/awesome/themes/", Choose whatever you want, and edit the ~/.config/awesome/default.rc.lua:

beautiful.init("/usr/share/awesome/themes/wabbit/theme.lua")

Save and exit then you got the new theme.
How to change the title bar?
In /usr/share/awesome/themes/wabbit/theme.lua, edit the following lines:

--theme.font          = "MonteCarlo medium 11"
theme.font          = "MonteCarlo medium 9"

I think 9 is good for me, but change this to 11 or bigger will make old men happy.
You can change this number into a very big or very small number, then some funny things will happen :)

Using IR-remote for controlling XBMC

###Wiring The Wiring is listed as following Picture, You got your IR receiver’s pins to corresponding pins on raspberry PI. Positive to Pin1(3.3v), negative to Pin6(GND), the signal pins to Pin12(GPIO 18).

rasp1.jpg ###Check the Kernel information Log on to the raspberry PI, then input dmesg to view the startup information, we can see the lirc has been added to kernel.

	$ dmesg
	[    4.976752] systemd-udevd[822]: starting version 208
	[    7.121052] lirc_dev: IR Remote Control driver registered, major 248 
	[    7.187858] lirc_rpi: module is from the staging directory, the quality is unknown, you have been warned.
	[    7.234864] lirc_rpi lirc_rpi.0: lirc_dev: driver lirc_rpi registered at minor = 0
	[    7.234894] lirc_rpi: driver registered!
	[    8.191460] lirc_rpi: auto-detected active low receiver on GPIO pin 18
	[    8.981462] input: lircd as /devices/virtual/input/input3

Now Let’s check the GPIO status:

	OpenELEC:~ # cat /sys/kernel/debug/gpio 
	GPIOs 0-53, bcm2708_gpio:
	 gpio-16  (led0                ) out hi
	 gpio-17  (lirc_rpi ir/out     ) in  lo
	 gpio-18  (lirc_rpi ir/in      ) in  hi

If it didn’t appear, using:

	modprobe lirc_rpi gpio_in_pin=18 gpio_out_pin=1

###Getting your own remote controller’s codes Now let’s kill all of the lircd related process, then use mode2 to detect the infra-red remote input.

	OpenELEC:~ # ps -ef | grep lirc
	1016 root       0:00 eventlircd --evmap=/etc/eventlircd.d --socket=/var/run/lirc/lircd --release=_UP
	1035 root       0:00 /usr/sbin/lircd --driver=default --device=/dev/lirc0 --uinput --output=/var/run/lirc/lircd-lirc0 --pidfile=/var/run/lirc/lircd-lirc0.pid /etc/lirc/lircd.conf.rpi
	1070 root      16:02 /usr/lib/xbmc/xbmc.bin --standalone -fs --lircdev /var/run/lirc/lircd
	1146 root       0:00 grep lirc
	OpenELEC:~ # killall lirc
What is mode2?  
	Trusty@SomethingMissing:~$ apt-cache search mode2
	lirc-x - infra-red remote control support - X utilities

Then Let’s listen the infra_remote’s input.The input is quite strange:

	space 4501241
	pulse 8917
	space 4415
	pulse 577

###Catching the code using irrecord The next step is turns these message into some code.

	OpenELEC:~/.config # pwd
	/storage/.config
	OpenELEC:~/.config # ls
	aacs                 samba.conf.sample    vpn-config
	hosts.conf           sysctl.conf.sample
	remote.conf          udev.rules.d.sample

Use irrecord for recording some signals and transform them into code:

	NAME
	       irrecord - application for recording IR-codes for usage with LIRC
	
	OpenELEC:~/.config # irrecord -d /dev/lirc0 lircd.conf

The method is, first long-press some keys, the result on screen will be several dots, then the program will change to another line, this time when you press some key, it only has one dot. Keep pressing keys until the irrecord tells you successful. Then you should input make some keys meaningful to the following images, when you feel satisfied, press enter to endup the program.

LIRCMAP.png

Now your lircd.conf file is generated, let see what’s in it.

	$ cat lircd.conf
	begin remote
	
	  name  lircd.conf
	  flags RAW_CODES|CONST_LENGTH
	  eps            30
	  aeps          100
	
	  gap          106707
	
	      begin raw_codes
	
	          name KEY_UP
	             8953    4401     581     527     595     503
	              613     506     588     539     581     510

If you want to use the pre-defined files, simply go to the lirc.sourceforge.net/remotes you can find almost all of the remote control information. ###Using the infra-remote for controlling Now call irw, but irw stunned with doing nothing. This command will show you all of the input signal

	OpenELEC:~ # irw
	6a 0 KEY_RIGHT devinput
	6a 0 KEY_RIGHT_UP devinput
	69 0 KEY_LEFT devinput
	69 0 KEY_LEFT_UP devinput
	6c 0 KEY_DOWN devinput
	6c 0 KEY_DOWN_UP devinput

Now in your XBMC window, you will see you can navigate and select something using your remote control.

Generate Your own epub book

###Using Wget to fetching the webpages wget could be used to fetch the webpages from a specified website, using following command could fetch all of the wiki related 1st layer pages from “awesome Wiki”

	$ wget -r -l 1 http://awesome.naquadah.org/wiki/Main_Page

After wget finished, you will found the 1st layer webpatges under your directory. ###Decide which you want for generating the book There are some rubbish pages in downloaed pages, thus we have to write a script for fetching the valuable ones, my script is listed as following:

[Trusty@DashArch wget]$ pwd
/home/Trusty/wget
[Trusty@DashArch wget]$ cd awesome.naquadah.org/
[Trusty@DashArch awesome.naquadah.org]$ ls
doc  download  images  index.html  robots.txt  wiki
[Trusty@DashArch awesome.naquadah.org]$ cd wiki
[Trusty@DashArch wiki]$ cat listitem.sh
#!/bin/sh
for file in `ls `
do
	#echo $file
	type=`file $file | awk {'print $2'}`
	#echo $type
	if [ "$type" = "HTML" ]
	then
		#echo $file
		#echo $type
		echo "<a href=\"$file\">$file</a><br/>"
	fi
done


simply run listitem.sh, we will get the file list tables like following:

<a href="Automounting">Automounting</a><br/>
<a href="Autostart">Autostart</a><br/>
<a href="Autostart_with_consolekit">Autostart_with_consolekit</a><br/>
<a href="Autostop">Autostop</a><br/>
<a href="Awesome_3.0_to_3.1">Awesome_3.0_to_3.1</a><br/>
..........................................

Add them into the html like:

<html>
   <body>
     <h1>Table of Contents</h1>
     <p style="text-indent:0pt">
	<a href="Automounting">Automounting</a><br/>
	<a href="Autostart">Autostart</a><br/>
......
	<a href="XRandR_Screen_Table">XRandR_Screen_Table</a><br/>
	<a href="Xscreensaver">Xscreensaver</a><br/>
     </p>
   </body>
</html>

###Generate the ebook Use Calibre, click “Add Book”, navigate to your directory which contains “index.html”, choose it, and now you can do whatever you want to generate epub, mobi, or 6 inch pdf. Just enjoy your ebook!!!

	[Trusty@DashArch Awesome (5)]$ ls -l -h
	total 4.5M
	-rw-r--r-- 1 Trusty root 887K Nov 20 21:07 Awesome - Dash.epub
	-rw-r--r-- 1 Trusty root 511K Nov 20 21:19 Awesome - Dash.mobi
	-rw-r--r-- 1 Trusty root 2.6M Nov 20 21:10 Awesome - Dash.pdf
	-rw-r--r-- 1 Trusty root 560K Nov 20 21:06 Awesome - Dash.zip
	-rw-r--r-- 1 Trusty root 1.1K Nov 20 21:18 metadata.opf

Depending on your settings, your generated ebook could be read on NOOK, Kindle, or other mobile equipment.

Problem of Capcity

Image1:

rasp1.jpg

Image2:

rasp2.jpg

Image3:

rasp3.jpg

Image4:

rasp4.jpg

Image5:

rasp5.jpg

Install OpenELEC on SD Card

###Partition the SD card Insert the SD card and view the partitions via fdisk -l, then

	[root@XXXyyy Trusty]# parted -s /dev/mmcblk0 mklabel msdos
	[root@XXXyyy Trusty]# fdisk -l
	Disk /dev/mmcblk0: 7.4 GiB, 7948206080 bytes, 15523840 sectors
	Units: sectors of 1 * 512 = 512 bytes
	Sector size (logical/physical): 512 bytes / 512 bytes
	I/O size (minimum/optimal): 512 bytes / 512 bytes
	Disklabel type: dos
	Disk identifier: 0x0002d03c

Make partition 1, fat32, and its size if 16 “cyl” (cylinders)

	[root@XXXyyy Trusty]# parted -s /dev/mmcblk0 unit cyl mkpart primary fat32 -- 0 16
	Parameters
	unit unit
	   Set unit as the unit to use when displaying locations and  sizes, unit cyl means cylinders. 
	mkpart part-type [fs-type] start end
	Make  a  part-type  partition  for filesystem fs-type (if
	specified), beginning at start  and  ending  at  end  (by
	default  in megabytes).  part-type should be one of "pri‐
	mary", "logical", or "extended".

Make the partition 1 bootable:

	$ parted -s /dev/mmcblk0 set 1 boot on
	Device         Boot Start       End Blocks  Id System
	/dev/mmcblk0p1 *     2048    258047 128000   c W95 FAT32 (LBA)

Make the second partition:

	[root@XXXyyy Trusty]# parted -s /dev/mmcblk0 unit cyl mkpart primary ext2 -- 16 -2
	
	Device         Boot     Start       End  Blocks  Id System
	/dev/mmcblk0p1 *         2048    258047  128000   c W95 FAT32 (LBA)
	/dev/mmcblk0p2         258048  15491071 7616512  83 Linux

Now we can see the partitions:

	[root@XXXyyy Trusty]# parted -s /dev/mmcblk0 print all
	Model: SD SU08G (sd/mmc)
	Disk /dev/mmcblk0: 7948MB
	Sector size (logical/physical): 512B/512B
	Partition Table: msdos
	Disk Flags: 
	
	Number  Start   End     Size    Type     File system  Flags
	 1      1049kB  132MB   131MB   primary               boot, lba
	 2      132MB   7931MB  7799MB  primary

###Make filesystems Make dos file systems(FAT32) in the first partition:

	[root@XXXyyy Trusty]# mkfs.vfat -n System /dev/mmcblk0p1 
	mkfs.fat 3.0.23 (2013-10-15)
	mkfs.fat: warning - lowercase labels might not work properly with DOS or Windows
	-n means the volumn name

Make ext4 filesystems in the second partition:

	[root@XXXyyy Trusty]# mkfs.ext4 -L Storage /dev/mmcblk0p2
	-L means the Label of the partition

###Copy to SD Card Mount the card

	[root@XXXyyy Trusty]# mount /dev/mmcblk0p1  /mnt
	[root@XXXyyy Trusty]# mount /dev/mmcblk0p2  /mnt1

Copy

	[root@XXXyyy bcm2835-bootloader-1100e2a]# pwd
	/media/x/code/openELEC/OpenELEC.tv/build.OpenELEC-RPi.arm-devel/bcm2835-bootloader-1100e2a
	[root@XXXyyy bcm2835-bootloader-1100e2a]# cp start.elf  /mnt/
	[root@XXXyyy bcm2835-bootloader-1100e2a]# ls
	bootcode.bin   fixup_cd.dat  fixup_x.dat       start_cd.elf  start_x.elf
	COPYING.linux  fixup.dat     LICENCE.broadcom  start.elf
	[root@XXXyyy bcm2835-bootloader-1100e2a]# sync
	[root@XXXyyy bcm2835-bootloader-1100e2a]# cp bootcode.bin /mnt/
	[root@XXXyyy bcm2835-bootloader-1100e2a]# sync

Copy kernel and System

	[root@XXXyyy target]# pwd
	/media/x/code/openELEC/OpenELEC.tv/target
	[root@XXXyyy target]# cp OpenELEC-RPi.arm-devel-20131119160254-r16396.kernel  /mnt/kernel.img
	[root@XXXyyy target]# sync
	[root@XXXyyy target]# cp OpenELEC-RPi.arm-devel-20131119160254-r16396.system /mnt/SYSTEM
	[root@XXXyyy target]# sync

Make the startup scripts:

	[root@XXXyyy mnt]# echo "boot=/dev/mmcblk0p1 disk=/dev/mmcblk0p2 ssh quiet" | tee cmdline.txt
	boot=/dev/mmcblk0p1 disk=/dev/mmcblk0p2 ssh quiet
	[root@XXXyyy mnt]# ls
	bootcode.bin  cmdline.txt  kernel.img  start.elf  SYSTEM
	[root@XXXyyy mnt]# cat cmdline.txt 
	boot=/dev/mmcblk0p1 disk=/dev/mmcblk0p2 ssh quiet

###Startup Now Insert the SD Card into your Raspberry Pi, and enjoy the XBMC.