Final Fantasy Piano Arrangements

Haven't posted any piano stuff for a while as I've been pretty busy with both Uni and work.
Here's my personal piano arrangement of the main themes of both Final Fantasy IX and X.
As usual, I'll post the chords I'm playing.


Final Fantasy IX: Melodies of Life


Final Fantasy X: To Zanarkand




Chords for FF IX: Melodies of Life

E
C#m
F#m
Emaj7
A
E
F#m7
B
G#m7
C#m7
F#m7
D#dim
E
A
E
B
B7
-
///
///
E
C#m
A6
Esus4
A
E
F#m
Bsus4
G#m
C#m
F#m7
Am6
E
E
A
E
///
///
///
A
A
B
-
G#m7
-
C#7
-
F#m -> E -> DMmaj7
-
Bm
C#m7
Amaj7
-
B
-
B7
///
///
E
G#m
A
-
F#m
A6
B
-
E
G#m
A
-
F#m
-
D6
F#m7
B7sus4
-
B7sus4
-
B
-
C#
-

Chords for FF X: To Zanarkand

Em
C
D
Bm
/
Cmaj7
-
Bm
-
/
Am
-
F
F
///
///
Em
Cmaj7
D
G
/
Em
Cmaj7
D
G
/
Em
Cmaj7
D
G
/
Cmaj7
D7
Am7 -> Bm
C
-
///
///
Am
F
G
Em
/
Bm
F#m
Am
Bsus4 -> B
///
///
Bm
G
A
F#m
/
C#m
Gmaj7
F#m7
B

Digg this

0 comments

How to write an xorg.conf file for linux

For those who don't know what an 'xorg.conf' file is, it's basically the file in Linux operating systems that tells the system what graphics card, mouse, keyboard you have, and what settings to use for them. There are a few GUIs for making these, but most of them do a terrible job, and add bloat.
My xorg.conf is clean, and therefore, easy to modify/change.

I've used the same xorg.conf for a long time, across 4 different machines (with very minor modifications depending on resolution required etc..)

It'll save a lot of time to just write it once, and reuse it. All I do is install the nvidia driver and copy over my xorg.conf and reboot, and you have a perfect working system.
This file should work for any nVidia graphics card (the names of my monitor and model of graphics card are just labels and don't matter) and will work with just the minor changes mentioned below.

If you have a laptop with nVidia graphics, and would like a perfectly configured xorg.conf for linux, you might want to just cheat and use my custom xorg.conf

Key features:

trackpad with vertical scrolling enabled.
USB connected mice will have forward and back buttons enabled in firefox.
nVidia logo at logon is removed.
Refresh rate is correctly reported as 60Hz instead of 50Hz with
Option "DynamicTwinView" "FALSE"
All required modules for Compiz Fusion to work. (no more borderless windows!)
DPMS adds Energy Star power saving functions for your monitor.
You can use any of the following (put in ServerLayout)

Option "StandbyTime" "10"
Option "SuspendTime" "20"
Option "OffTime" "30"
You'll just have to change your desired resolution and refresh rate (1280x800_60 in mine)

Also, note, if you're using a desktop with multiple DVI ports, you'll need to specify (DPF for Digital Flat Panel) under Screen

Option "metamodes" "DFP-1: nvidia-auto-select +0+0"

Anyway, here's my xorg)


# Xorg SyXbiT - Dell XPS m1330 w/ nVidia GeForce 8400M GS

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0"
InputDevice "Mouse0"
InputDevice "Touchpad"
Option "OffTime" "30"

EndSection

Section "Files"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "type1"
Load "freetype"
Load "glx"
EndSection

Section "ServerFlags"
Option "Xinerama" "0"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "Buttons" "7"
Option "ButtonMapping" "1 2 3 6 7"
Option "ZAxisMapping" "4 5"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "SHMConfig" "on"
EndSection


Section "InputDevice"
Identifier "Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Dell"
ModelName "CMO LED"
HorizSync 30.0 - 75.0
VertRefresh 60.0
#DPMS for Energy Star power saving
Option "DPMS" "TRUE"
#Fix refresh rate bug
Option "DynamicTwinView" "FALSE"
EndSection

Section "Device"
Identifier "8400M GS"
Driver "nvidia"
Option "NoLogo" "true"
VendorName "NVIDIA Corporation"
BoardName "GeForce 8400M GS"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Screen0"
Device "8400M GS"
Monitor "Monitor0"
DefaultDepth 24
Option "TwinView" "0"
Option "metamodes" "1280x800_60 +0+0"
EndSection

Digg this

6 comments