diff --git a/conky/launch.sh b/conky/launch.sh index bc396b6..bb51a56 100755 --- a/conky/launch.sh +++ b/conky/launch.sh @@ -3,5 +3,5 @@ killall -q conky while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done -conky & -conky -q -c $HOME/.config/conky/todo.conf & +# conky & +# conky -q -c $HOME/.config/conky/todo.conf & diff --git a/i3/config b/i3/config index 2bdfbd2..315af0c 100644 --- a/i3/config +++ b/i3/config @@ -209,7 +209,7 @@ hide_edge_borders both bindsym $mod+Shift+s sticky toggle # gaps -gaps outer 28 +gaps outer 29 gaps inner 8 # Wallpaper diff --git a/picom/picom.conf b/picom/picom.conf index e90502d..dd10dc7 100644 --- a/picom/picom.conf +++ b/picom/picom.conf @@ -112,7 +112,7 @@ frame-opacity = 0.7; inactive-opacity-override = false; # 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) # inactive-dim = 0.0 diff --git a/polybar/config b/polybar/config index 0752fdb..df93f6a 100644 --- a/polybar/config +++ b/polybar/config @@ -28,6 +28,7 @@ width = 80% height = 28 offset-x = 10% +offset-y = 5 background = ${colors.background} foreground = ${colors.foreground} diff --git a/preview.png b/preview.png index 0130724..574dea4 100644 Binary files a/preview.png and b/preview.png differ diff --git a/termite/config b/termite/config index a6adea1..8ae2448 100644 --- a/termite/config +++ b/termite/config @@ -11,7 +11,7 @@ cursor = #d8d8d8 # 181818 (HEX) default 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 highlight = #4c566a diff --git a/vimrc b/vimrc index f786f06..d6af9f5 100644 --- a/vimrc +++ b/vimrc @@ -33,7 +33,7 @@ vmap >gv vmap :NERDTreeToggle - +" CTRL + F to enter goyo mode +nmap :Goyo x100% " Theme set t_Co=256 -colorscheme base16-default-dark " happy_hacking +colorscheme base16-default-dark let &showbreak = '↳ ' hi Normal guibg=NONE ctermbg=NONE set termguicolors 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 goyo_enter() +autocmd! User GoyoLeave nested call goyo_leave() diff --git a/wallpaper.jpg b/wallpaper.jpg index dcf1a27..9e18047 100644 Binary files a/wallpaper.jpg and b/wallpaper.jpg differ