From 781a2a5db10eb302dd1bd96916f02bc8029d663f Mon Sep 17 00:00:00 2001
From: Naren Dasan <naren@narendasan.com>
Date: Sat, 3 Sep 2016 09:24:23 -0500
Subject: [PATCH] Updating readme with dependency commands to run

---
 README.md | 26 +++++++++++++++++---------
 1 file changed, 17 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 50870b8..25b8163 100644
--- a/README.md
+++ b/README.md
@@ -10,17 +10,25 @@ To install Sass, install Ruby and the gem command using your distribution's pack
 
 `gem install sass`
 
-You'll also need the following commands in your path to generate the gresource binary. Install them using your distribution's package manager.
+You'll also need the ```glib-compile-schemas``` and  ```gdk-pixbuf-pixdata``` commands in your path to generate the gresource binary. Install them using your distribution's package manager.
 
-* `glib-compile-schemas` 
-    * debian: `libglib2.0-dev`
-    * rpm: `glib2-devel`
-    * arch `glib2`
+#### Debian, Ubuntu
 
-* `gdk-pixbuf-pixdata`
-    * debian: `libgdk-pixbuf2.0-dev`
-    * rpm: `gdk-pixbuf2-devel`
-    * arch: `gdk-pixbuf2`
+ ```sh
+sudo apt-get install libglib2.0-dev libgdk-pixbuf2.0-dev libxml2-utils
+```
+
+#### Fedora
+
+```sh
+sudo dnf install glib2-devel gdk-pixbuf2-devel
+```
+
+#### Arch Linux
+
+```sh
+sudo pacman -S glib2 gdk-pixbuf2
+```
 
 After installing all the dependencies, switch to the cloned directory and, run the following in Terminal,