lightmode
E. Almqvist 4 years ago
parent ad804276dc
commit b762b61477
  1. 5
      i3/config
  2. 6
      picom/picom.conf
  3. 12
      polybar/config
  4. 3
      termite/config
  5. 13
      vimrc

@ -209,11 +209,12 @@ hide_edge_borders both
bindsym $mod+Shift+s sticky toggle
# gaps
gaps outer 29
gaps outer 4 # 29
gaps inner 8
# Wallpaper
exec_always feh --bg-fill $HOME/.wallpaper.jpg
# exec_always feh --bg-fill $HOME/.wallpaper.jpg
exec_always nitrogen --restore
# Monitor stuff
exec_always xrandr --output DP-0 --off --output DP-1 --off --output DP-2 --primary --mode 2560x1080 --pos 1920x0 --rotate normal --output DP-3 --off --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal --output DP-4 --off --output DP-5 --off

@ -75,11 +75,11 @@ fading = true;
# Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028)
# fade-in-step = 0.028
fade-in-step = 0.04;
fade-in-step = 0.045;
# Opacity change between steps while fading out. (0.01 - 1.0, defaults to 0.03)
# fade-out-step = 0.03
fade-out-step = 0.04;
fade-out-step = 0.045;
# The time between steps in fade step, in milliseconds. (> 0, defaults to 10)
# fade-delta = 10
@ -141,7 +141,7 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ];
# Parameters for background blurring, see the *BLUR* section for more information.
blur-method = "dual_kawase";
blur-strength = 4;
blur-strength = 8;
# blur-size = 2;
#
# blur-deviation = false

@ -1,5 +1,5 @@
[colors]
background = #be242424
background = #df242424
# ef1d1f21
foreground = #a4abb3
# 707880
@ -21,14 +21,14 @@ scroll-up = i3wm-wsnext
scroll-down = i3wm-wsprev
fixed-center = true
override-redirect = true
#override-redirect = true
wm-restack = i3
width = 80%
height = 28
#width = 80%
height = 22
offset-x = 10%
offset-y = 5
#offset-x = 10%
#offset-y = 5
background = ${colors.background}
foreground = ${colors.foreground}

@ -1,5 +1,6 @@
[options]
font = Source Code Pro 10
size_hints = true
[colors]
# Base16 Default Dark
@ -11,7 +12,7 @@ cursor = #d8d8d8
# 181818 (HEX) default
cursor_foreground = rgba(24, 24, 24, 0.94)
background = rgba(24, 24, 24, 0.62)
background = rgba(24, 24, 24, 0.72)
# a=0.94
highlight = #4c566a

13
vimrc

@ -33,7 +33,7 @@ vmap <Tab> >gv
vmap <S-Tab> <gv
syntax on
" set nu
set nu
set ruler
" Vim-Plug
@ -57,7 +57,7 @@ nmap <silent> <C-F> :Goyo x100%<CR>
set t_Co=256
colorscheme base16-default-dark
let &showbreak = '↳ '
hi Normal guibg=NONE ctermbg=NONE
" hi Normal guibg=NONE ctermbg=NONE
set termguicolors
let base16colorspace=256
@ -90,3 +90,12 @@ endfunction
autocmd! User GoyoEnter nested call <SID>goyo_enter()
autocmd! User GoyoLeave nested call <SID>goyo_leave()
" YCM
set completeopt-=preview
" Tabs
nnoremap <silent> <C-Left> :tabprevious<CR>
nnoremap <silent> <C-Right> :tabnext<CR>
nnoremap <silent> <C-j> :tabprevious<CR>
nnoremap <silent> <C-k> :tabnext<CR>

Loading…
Cancel
Save