diff options
author | Urbain Vaes <urbain@vaes.uk> | 2014-11-05 18:45:53 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2014-11-05 18:45:53 +0000 |
commit | f36c1e31da4fb0f46c6b40537ef4b2225df94a43 (patch) | |
tree | 16078b719e2a32c49a563c8fdfbd5632e52610a7 /zshrc | |
parent | 71ba6f931334fcaedbf471cc8181415a3b07b9e7 (diff) |
update zsh
Diffstat (limited to 'zshrc')
-rw-r--r-- | zshrc | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -88,7 +88,7 @@ alias uc='cd ~/Dropbox/phd/programs' alias up='cd ~/Dropbox/phd/presentations' alias ul='cd ~/Dropbox/phd/literature' alias ur='cd ~/Dropbox/phd/reports' -alias m='offlineimap -u quiet & mutt' +alias m='mutt' alias a='vifm' alias mn='vim .mynotes' alias x='sh ~/.xmodmap' @@ -108,14 +108,19 @@ alias xconf='vim ~/.xmodmap' bindkey -a 'k' history-beginning-search-backward bindkey -a 'j' history-beginning-search-forward +# Colorscheme sleep 2 h=`date +%H` if [ $h -lt 9 ]; then xdotool key Alt+t p Down Return -elif [ $h -lt 18 ]; then + eval `dircolors ~/dircolors-solarized/dircolors.ansi-dark` +elif [ $h -lt 17 ]; then xdotool key Alt+t p Down Down Return + eval `dircolors ~/dircolors-solarized/dircolors.ansi-light` else xdotool key Alt+t p Down Return + eval `dircolors ~/dircolors-solarized/dircolors.ansi-dark` fi -crontab ~/.crontab +# Crontab jobs +crontab ~/dotfiles/crontab |