changed README and name of the package
8 files changed, 19 insertions(+), 6 deletions(-)

A => README
M README.org
A => screenshot-emacs.png
A => screenshot-insert.png
A => screenshot-normal.png
A => screenshot-visual.png
R screenshot.png => 
M xc-look-mode-line.el => xc-line.el
A => README +1 -0
@@ 0,0 1,1 @@ 
+README.org
  No newline at end of file

          
M README.org +16 -4
@@ 1,16 1,28 @@ 
 * xaltsc's config mode line
 
-[[./screenshot.png]]
-
 A simple vim-like mode-line with special faces for evil.
 
 Names of the faces come from [[https://github.com/nvim-lualine/lualine.nvim][Lualine]].
 
 The default theme is based off [[https://carbondesignsystem.com/guidelines/color/overview][IBM's Carbon Design Language]].
 
+** Screenshots
+
+- Normal Mode
+  [[./screenshot-normal.png]]
+- Insert Mode
+   [[./screenshot-insert.png]]
+- Visual Mode
+   [[./screenshot-visual.png]]
+- Emacs Mode
+   [[./screenshot-emacs.png]]
+
 ** Usage
 
 #+BEGIN_SRC emacs-lisp
-  (require 'xc-look-mode-line)
-  (setq-default mode-line-format xc-line/mode-line)
+  (use-package xc-line
+    :ensure nil
+    :after (s dash)
+    :load-path "path/to/xc-line/"
+    :config (xc-line-mode 1))
 #+END_SRC

          
A => screenshot-emacs.png +0 -0

        
A => screenshot-insert.png +0 -0

        
A => screenshot-normal.png +0 -0

        
A => screenshot-visual.png +0 -0

        
R screenshot.png =>  +0 -0

        
M xc-look-mode-line.el => xc-line.el +2 -2
@@ 397,5 397,5 @@ 
   (run-hooks 'xc-line-mode-hook))
 
 
-(provide 'xc-look-mode-line)
-;;; xc-look-mode-line.el ends here
+(provide 'xc-line)
+;;; xc-line.el ends here