diff --git a/.config/nvim/coc-settings.json b/.config/nvim/coc-settings.json
index 897d1f6..fbba298 100644
--- a/.config/nvim/coc-settings.json
+++ b/.config/nvim/coc-settings.json
@@ -39,10 +39,6 @@
       "command": "bingo",
       "rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
       "filetypes": ["go"]
-    },
-    "jsonnet": {
-      "command": "jsonnet-language-server",
-      "filetypes": ["jsonnet"]
     }
   }
 }
diff --git a/.xinitrc b/.xinitrc
index 834e00e..89c3556 100755
--- a/.xinitrc
+++ b/.xinitrc
@@ -3,4 +3,5 @@ xsetroot -solid \#99aab0
 xmodmap $HOME/.Xmodmap
 setxkbmap -option ctrl:nocaps,grp:switch,grp_led:scroll us,se
 alacritty -e tmux attach -t0 &
+xcalib $HOME/.config/B140QAN02_0.icm
 exec $HOME/bin/dwm
diff --git a/.zshrc b/.zshrc
index 559bd77..f74f558 100644
--- a/.zshrc
+++ b/.zshrc
@@ -60,6 +60,7 @@ zplug "plugins/git", from:oh-my-zsh
 zplug "plugins/history-substring-search", from:oh-my-zsh
 zplug "zsh-users/zsh-syntax-highlighting", defer:2
 zplug "arunvelsriram/kube-fzf", use:'kube-fzf.sh'
+zplug "thecasualcoder/kube-fzf", as:command, use:"{*pod,*.sh}"
 
 zplug "~/.zsh", from:local
 
@@ -258,7 +259,7 @@ alias ag='ag --pager less'
 alias cdiff='colordiff -u'
 alias dotgit='git --work-tree $HOME --git-dir $HOME/.dot_git'
 alias hs='history -a; history -n'
-alias l='less -nS'
+alias l='less -nRS'
 alias lower="tr '[:upper:]' '[:lower:]'"
 alias pstree="pstree -Auh | less"
 alias tail='tail -n $LINES'
diff --git a/bin/dwm b/bin/dwm
index 1cb6f0b..1641148 100755
Binary files a/bin/dwm and b/bin/dwm differ
diff --git a/bin/ktoolbox b/bin/ktoolbox
deleted file mode 100755
index 673bba2..0000000
--- a/bin/ktoolbox
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-set -e
-name=toolbox-${USER}
-image='dlneintr/toolbox:latest'
-labels="app=toolbox,owner=${USER},cookie=0xdeadbeef"
-
-existing=$(kubectl get pod -l ${labels} --output='jsonpath={.items..metadata.name}')
-
-if [ "${existing}" == "" ]; then
-  kubectl run --image=${image} --image-pull-policy=Always --labels=${labels} ${name}
-fi
-
-for i in {1..10}; do
-  ready=$(kubectl get pod --field-selector=status.phase=Running -l ${labels} --output='jsonpath={.items..metadata.name}')
-  if [ "${ready}" != "" ]; then
-    exec kubectl exec -it ${ready} /bin/sh
-  fi
-  echo "Waiting for pod to be ready"
-  sleep 1
-done
diff --git a/bin/ktoolbox b/bin/ktoolbox
new file mode 120000
index 0000000..fcc985d
--- /dev/null
+++ b/bin/ktoolbox
@@ -0,0 +1 @@
+/home/dln/src/github.com/dln/ktoolbox/ktoolbox
\ No newline at end of file