diff --git a/1.1.md b/1.1.md
index f795a548..bc0810ed 100644
--- a/1.1.md
+++ b/1.1.md
@@ -29,3 +29,8 @@
fetch --ascii "path/to/ascii" --ascii_color 2
```
+
+- Added "screenfetch mode" which will display your distro's ascii art
+ next to the info.
+ See: http://localhost:6419/#how-do-i-enable-screenfetch-mode
+- Added `--ascii_distro` to choose which distro's ascii logo to display.
diff --git a/README.md b/README.md
index a4e90458..5ba34975 100644
--- a/README.md
+++ b/README.md
@@ -266,6 +266,15 @@ alias fetch2="fetch \
## Frequently Asked Questions
+#### How do I enable screenfetch mode?
+
+Launching the script with `--ascii distro` or setting `image="ascii"`
+launch the script in "screenfetch mode". The script will display yout distro's ascii
+next to the info, exactly like screenfetch.
+
+![arch](https://camo.githubusercontent.com/972490362219f4aa087a0a9491df24d506590542/687474703a2f2f692e696d6775722e636f6d2f746741504a76322e706e67)
+
+
#### Why doesn't fetch support my wallpaper setter?
It's hard to add support for other wallpaper setters as
diff --git a/fetch b/fetch
index ce10c4ca..cd5fb90d 100755
--- a/fetch
+++ b/fetch
@@ -205,12 +205,12 @@ prompt_height=1
# }}}
-# Image Options {{{
-
-
# Image Source
# --image wall, shuffle, ascii, /path/to/img, off
-image="wall"
+image="ascii"
+
+# Image Options {{{
+
# Thumbnail directory
imgtempdir="$HOME/.fetchimages"