From 807e63c5be37595629d82521f022f3842f0f3ede Mon Sep 17 00:00:00 2001 From: Alexandre Dantas Date: Thu, 31 Jul 2014 09:05:28 -0300 Subject: [PATCH] Small change on `README` Made sure to separate the different phases of the building process. Also, added bash syntax highlighting to the build block. --- README.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cf4a8e5..8e12529 100644 --- a/README.md +++ b/README.md @@ -51,9 +51,16 @@ Install Qt directly from here http://qt-project.org/downloads . Once done export ###Compile Once you installed all dependencies (Qt is installed and in your path) you need to compile and run the application: - git clone https://github.com/Swordifish90/cool-old-term.git - cd cool-old-term - cd konsole-qml-plugin - qmake && make && make install - cd .. - ./cool-old-term +```bash +# Get it from GitHub +git clone https://github.com/Swordifish90/cool-old-term.git + +# Build it +cd cool-old-term +cd konsole-qml-plugin +qmake && make && make install +cd .. + +# Have fun! +./cool-old-term +```