diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -23,19 +23,37 @@
 Then type `stack install` in the directory and it will generate an executable called `tweet`, which is what we want.
 
 ## Use
+
+### Sending tweets
 To tweet from stderr, run a command that pipes stderr to stdin, i.e.
 
 ```
-YOUR_BUILD_COMMAND 2>&1 >/dev/null | tweet
+YOUR_BUILD_COMMAND 2>&1 >/dev/null | tweet send
 ```
 
-The `tweet` executable reads from stdIn as its only behavior, but you can view the options (replies, number of tweets to thread, etc.) with
+The `tweet` executable reads from stdIn only, but you can view the options (replies, number of tweets to thread, etc.) with
 
 ```
 tweet --help
 ```
 
 This script powers the twitter account [@my\_build\_errors](https://twitter.com/my_build_errors) for instance. There's an example bash script for in `bash/example`
+
+### Viewing your timeline
+
+You can also use
+
+```
+tweet view
+```
+
+or 
+
+```
+tweet view --color
+```
+
+to view your own timeline.
 
 ### Completions
 
diff --git a/bash/example b/bash/example
new file mode 100644
--- /dev/null
+++ b/bash/example
@@ -0,0 +1,1 @@
+stack install 2&>1 >/dev/null | tweet -c .cred -t3
diff --git a/bash/mkCompletions b/bash/mkCompletions
new file mode 100644
--- /dev/null
+++ b/bash/mkCompletions
@@ -0,0 +1,4 @@
+#!/bin/bash
+tweet --bash-completion-script `which tweet` > tmp
+sudo cp tmp /etc/bash_completion.d/tweet
+rm tmp
diff --git a/clit.cabal b/clit.cabal
--- a/clit.cabal
+++ b/clit.cabal
@@ -1,5 +1,5 @@
 name: clit
-version: 0.3.0.1
+version: 0.3.0.2
 cabal-version: >=1.10
 build-type: Simple
 license: BSD3
@@ -15,6 +15,9 @@
 author: Vanessa McHale
 extra-source-files:
     README.md
+    stack.yaml
+    bash/mkCompletions
+    bash/example
 
 source-repository head
     type: git
@@ -51,7 +54,7 @@
     main-is: Main.hs
     build-depends:
         base >=4.9.1.0 && <4.10,
-        clit >=0.3.0.1 && <0.4
+        clit >=0.3.0.2 && <0.4
     default-language: Haskell2010
     hs-source-dirs: app
     ghc-options: -threaded -rtsopts -with-rtsopts=-N
diff --git a/src/Web/Tweet.hs b/src/Web/Tweet.hs
--- a/src/Web/Tweet.hs
+++ b/src/Web/Tweet.hs
@@ -99,7 +99,7 @@
     request <- signRequest filepath $ initialRequest { method = "POST" }
     responseInt request manager
 
-showTimeline count color filepath = replace "\\/" "/" . fromRight . (fmap (if color then displayTimelineColor else displayTimeline)) <$> getTimeline count filepath
+showTimeline count color filepath = replace "\\n" "\n" . replace "\\/" "/" . fromRight . (fmap (if color then displayTimelineColor else displayTimeline)) <$> getTimeline count filepath
     where fromRight (Right a) = a
 
 getTimeline count filepath = do
diff --git a/stack.yaml b/stack.yaml
new file mode 100644
--- /dev/null
+++ b/stack.yaml
@@ -0,0 +1,66 @@
+# This file was automatically generated by 'stack init'
+#
+# Some commonly used options have been documented as comments in this file.
+# For advanced use and comprehensive documentation of the format, please see:
+# http://docs.haskellstack.org/en/stable/yaml_configuration/
+
+# Resolver to choose a 'specific' stackage snapshot or a compiler version.
+# A snapshot resolver dictates the compiler version and the set of packages
+# to be used for project dependencies. For example:
+#
+# resolver: lts-3.5
+# resolver: nightly-2015-09-21
+# resolver: ghc-7.10.2
+# resolver: ghcjs-0.1.0_ghc-7.10.2
+# resolver:
+#  name: custom-snapshot
+#  location: "./custom-snapshot.yaml"
+resolver: lts-8.3
+
+# User packages to be built.
+# Various formats can be used as shown in the example below.
+#
+# packages:
+# - some-directory
+# - https://example.com/foo/bar/baz-0.0.2.tar.gz
+# - location:
+#    git: https://github.com/commercialhaskell/stack.git
+#    commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a
+# - location: https://github.com/commercialhaskell/stack/commit/e7b331f14bcffb8367cd58fbfc8b40ec7642100a
+#   extra-dep: true
+#  subdirs:
+#  - auto-update
+#  - wai
+#
+# A package marked 'extra-dep: true' will only be built if demanded by a
+# non-dependency (i.e. a user package), and its test suites and benchmarks
+# will not be run. This is useful for tweaking upstream packages.
+packages:
+- '.'
+# Dependency packages to be pulled from upstream that are not in the resolver
+# (e.g., acme-missiles-0.3)
+extra-deps: []
+
+# Override default flag values for local packages and extra-deps
+flags: {}
+
+# Extra package databases containing global packages
+extra-package-dbs: []
+
+# Control whether we use the GHC we find on the path
+# system-ghc: true
+#
+# Require a specific version of stack, using version ranges
+# require-stack-version: -any # Default
+# require-stack-version: ">=1.4"
+#
+# Override the architecture used by stack, especially useful on Windows
+# arch: i386
+# arch: x86_64
+#
+# Extra directories used by stack for building
+# extra-include-dirs: [/path/to/dir]
+# extra-lib-dirs: [/path/to/dir]
+#
+# Allow a newer minor version of GHC than the snapshot specifies
+# compiler-check: newer-minor
