Merge branch 'home'

This commit is contained in:
2018-02-03 23:25:53 +01:00
5 changed files with 13 additions and 3 deletions

View File

@@ -2,7 +2,10 @@
printf '%s\n' "execute xautorandr" >>"$LOGFILE" printf '%s\n' "execute xautorandr" >>"$LOGFILE"
xautorandr xautorandr &
printf '%s\n' "start compton" >>"$LOGFILE"
compton --backend glx --vsync opengl &
printf '%s\n' "disable screen blanking" >>"$LOGFILE" printf '%s\n' "disable screen blanking" >>"$LOGFILE"
xset -dpms & &>> $LOGFILE xset -dpms & &>> $LOGFILE

View File

@@ -50,9 +50,9 @@ wifi {
spotify { spotify {
format = "  {title} - {artist} " format = "  {title} - {artist} "
format_down = "  off "
cache_timeout = 1 cache_timeout = 1
color_offline = '#FFFFFF' color_offline = '#FFFFFF'
format_down = "no Spotify"
} }
online_status { online_status {

View File

@@ -12,7 +12,7 @@ Plug 'lepture/vim-jinja'
Plug 'majutsushi/tagbar' Plug 'majutsushi/tagbar'
" Plug 'nblock/vim-dokuwiki' " Plug 'nblock/vim-dokuwiki'
Plug 'reedes/vim-pencil' Plug 'reedes/vim-pencil'
" Plug 'saltstack/salt-vim' Plug 'saltstack/salt-vim'
Plug 'sickill/vim-monokai' Plug 'sickill/vim-monokai'
" Plug 'sjl/gundo.vim' " Plug 'sjl/gundo.vim'
Plug 'tpope/vim-commentary' Plug 'tpope/vim-commentary'
@@ -47,6 +47,8 @@ Plug 'rodjek/vim-puppet'
Plug 'suan/vim-instant-markdown' Plug 'suan/vim-instant-markdown'
"Plug 'marshallward/vim-restructuredtext' "Plug 'marshallward/vim-restructuredtext'
Plug 'vim-syntastic/syntastic' Plug 'vim-syntastic/syntastic'
Plug 'ElmCast/elm-vim'
Plug 'avh4/elm-format'
call plug#end() call plug#end()
filetype plugin indent on filetype plugin indent on

View File

@@ -62,6 +62,7 @@ alias tw="task"
alias twl="task list" alias twl="task list"
alias twa="task add" alias twa="task add"
alias twd="task done" alias twd="task done"
alias inbox="task add +inbox"
alias yaml2js="python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)'" alias yaml2js="python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)'"

View File

@@ -177,3 +177,7 @@ b() {
fi fi
cd "$(eval ${target})" cd "$(eval ${target})"
} }
sb() {
echo $(( $1 * $(cat /sys/class/backlight/intel_backlight/max_brightness) / 100)) | sudo tee /sys/class/backlight/intel_backlight/brightness
}