URI: 
       tFix escaped HTML - monochromatic - monochromatic blog: http://blog.z3bra.org
  HTML git clone git://z3bra.org/monochromatic
   DIR Log
   DIR Files
   DIR Refs
       ---
   DIR commit 101db9eed7fd724e19b62eb7d975cd3c75d3a57b
   DIR parent 80c0b8870d9a6a5f6899ddfcd4c295f6878eb20d
  HTML Author: z3bra <contactatz3bradotorg>
       Date:   Wed, 16 Nov 2016 08:43:05 +0100
       
       Fix escaped HTML
       
       Diffstat:
         M 2013/10/home-sweet-home.txt         |      14 +++++++-------
       
       1 file changed, 7 insertions(+), 7 deletions(-)
       ---
   DIR diff --git a/2013/10/home-sweet-home.txt b/2013/10/home-sweet-home.txt
       t@@ -285,7 +285,7 @@ Here is my personnal prompt:
                '\[\e[1;34m\]' '\[\e[1;35m\]' '\[\e[1;36m\]' '\[\e[1;37m\]')
            nofg='\[\e[0m\]'
        
       -    PS1='';[ -n "$SSH_CLIENT" ] &amp;&amp; PS1="${fg[8]}$(hostname|cut -b-2) "
       +    PS1='';[ -n "$SSH_CLIENT" ] && PS1="${fg[8]}$(hostname|cut -b-2) "
            export PS1=" ${PS1}${fg[11]}──── ${nofg}"
        
        And my old zsh prompt:
       t@@ -358,7 +358,7 @@ It is light, fast and simple. Exactly how I like it!  the purpose is simple:
        
        That is all you need. For example, if you only need the date in the bar:
        
       -    while :; do date; done | bar &amp;
       +    while :; do date; done | bar &
        
        And there you go!  You can achieve really great looking stuff with that simple
        process:  
       t@@ -407,14 +407,14 @@ Finally, here is my own xinitrc
            nvidia-settings -l
        
            # Set wallpaper
       -    hsetroot -tile ~/usr/img/bg/stripes.png &amp;
       +    hsetroot -tile ~/usr/img/bg/stripes.png &
        
            # default cursor
       -    xsetroot -cursor_name left_ptr &amp;
       +    xsetroot -cursor_name left_ptr &
        
            function wm() {
            # Load X resources
       -    xrdb -load ~/.Xresources &amp;
       +    xrdb -load ~/.Xresources &
        
            # personnal bindings
            xbindkeys
       t@@ -423,7 +423,7 @@ Finally, here is my own xinitrc
            xsetroot -name $1
        
            #status bar
       -    ~/bin/bar/status.sh &amp; # it acts kinda weirdly
       +    ~/bin/bar/status.sh & # it acts kinda weirdly
        
            # Compositing
            # enable RGBA module for GTK
       t@@ -436,7 +436,7 @@ Finally, here is my own xinitrc
            exec $1
            }
        
       -    [[ -z $1 ]] &amp;&amp; wm cwm
       +    [[ -z $1 ]] && wm cwm
        
            wm $1