Changed a lot of stuff

lightmode
E. Almqvist 4 years ago
parent ecb07c26d9
commit ad804276dc
  1. 4
      conky/launch.sh
  2. 2
      i3/config
  3. 2
      picom/picom.conf
  4. 1
      polybar/config
  5. BIN
      preview.png
  6. 2
      termite/config
  7. 38
      vimrc
  8. BIN
      wallpaper.jpg

@ -3,5 +3,5 @@ killall -q conky
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
conky & # conky &
conky -q -c $HOME/.config/conky/todo.conf & # conky -q -c $HOME/.config/conky/todo.conf &

@ -209,7 +209,7 @@ hide_edge_borders both
bindsym $mod+Shift+s sticky toggle bindsym $mod+Shift+s sticky toggle
# gaps # gaps
gaps outer 28 gaps outer 29
gaps inner 8 gaps inner 8
# Wallpaper # Wallpaper

@ -112,7 +112,7 @@ frame-opacity = 0.7;
inactive-opacity-override = false; inactive-opacity-override = false;
# Default opacity for active windows. (0.0 - 1.0, defaults to 1.0) # Default opacity for active windows. (0.0 - 1.0, defaults to 1.0)
# active-opacity = 1.0 active-opacity = 1.0
# Dim inactive windows. (0.0 - 1.0, defaults to 0.0) # Dim inactive windows. (0.0 - 1.0, defaults to 0.0)
# inactive-dim = 0.0 # inactive-dim = 0.0

@ -28,6 +28,7 @@ width = 80%
height = 28 height = 28
offset-x = 10% offset-x = 10%
offset-y = 5
background = ${colors.background} background = ${colors.background}
foreground = ${colors.foreground} foreground = ${colors.foreground}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

@ -11,7 +11,7 @@ cursor = #d8d8d8
# 181818 (HEX) default # 181818 (HEX) default
cursor_foreground = rgba(24, 24, 24, 0.94) cursor_foreground = rgba(24, 24, 24, 0.94)
background = rgba(24, 24, 24, 0.82) background = rgba(24, 24, 24, 0.62)
# a=0.94 # a=0.94
highlight = #4c566a highlight = #4c566a

38
vimrc

@ -33,7 +33,7 @@ vmap <Tab> >gv
vmap <S-Tab> <gv vmap <S-Tab> <gv
syntax on syntax on
set nu " set nu
set ruler set ruler
" Vim-Plug " Vim-Plug
@ -43,18 +43,50 @@ call plug#begin('~/.vim/plugged')
Plug 'preservim/nerdtree' " Tree navigation Plug 'preservim/nerdtree' " Tree navigation
Plug 'rafi/awesome-vim-colorschemes' " Theme collection Plug 'rafi/awesome-vim-colorschemes' " Theme collection
Plug 'chriskempson/base16-vim' " Theme Plug 'chriskempson/base16-vim' " Theme
Plug 'junegunn/goyo.vim' " Center code thing
call plug#end() call plug#end()
" Mapping " Mapping
" CTRL + D to open navtree " CTRL + D to open navtree
nmap <silent> <C-D> :NERDTreeToggle<CR> nmap <silent> <C-D> :NERDTreeToggle<CR>
" CTRL + F to enter goyo mode
nmap <silent> <C-F> :Goyo x100%<CR>
" Theme " Theme
set t_Co=256 set t_Co=256
colorscheme base16-default-dark " happy_hacking colorscheme base16-default-dark
let &showbreak = '↳ ' let &showbreak = '↳ '
hi Normal guibg=NONE ctermbg=NONE hi Normal guibg=NONE ctermbg=NONE
set termguicolors set termguicolors
let base16colorspace=256 let base16colorspace=256
" Goyo
let g:goyo_width=180
function! s:goyo_enter()
if executable('tmux') && strlen($TMUX)
silent !tmux set status off
silent !tmux list-panes -F '\#F' | grep -q Z || tmux resize-pane -Z
endif
set noshowmode
set noshowcmd
set scrolloff=999
" Limelight
hi Normal guibg=NONE ctermbg=NONE
endfunction
function! s:goyo_leave()
if executable('tmux') && strlen($TMUX)
silent !tmux set status on
silent !tmux list-panes -F '\#F' | grep -q Z && tmux resize-pane -Z
endif
set showmode
set showcmd
set scrolloff=5
" Limelight!
hi Normal guibg=NONE ctermbg=NONE
endfunction
autocmd! User GoyoEnter nested call <SID>goyo_enter()
autocmd! User GoyoLeave nested call <SID>goyo_leave()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 MiB

After

Width:  |  Height:  |  Size: 857 KiB

Loading…
Cancel
Save