Some nice i3 changes

This commit is contained in:
Marco Thomas
2021-02-02 10:56:01 +01:00
parent 885bf5fdc6
commit 94fa75142d
2 changed files with 9 additions and 8 deletions

View File

@@ -40,22 +40,21 @@ bindsym $mod+Shift+q kill
bindsym $mod+f fullscreen toggle bindsym $mod+f fullscreen toggle
bindsym $mod+Shift+space floating toggle bindsym $mod+Shift+space floating toggle
bindsym $mod+s layout toggle stacking splith #bindsym $mod+s layout toggle stacking splith
# Create splits just like in vim # Create splits just like in vim
bindsym $mod+Shift+s split v bindsym $mod+Shift+s split v
bindsym $mod+Shift+v split h bindsym $mod+Shift+v split h
bindsym $mod+n workspace next bindsym $mod+comma workspace prev
bindsym $mod+p workspace prev bindsym $mod+period workspace next
# dmenu # dmenu
set $fg '#ffffff' set $fg '#ffffff'
set $bg '#000000' set $bg '#1C1B1D'
set $accent '#98c379' set $accent '#98c379'
set $font 'Product Sans:pixelsize=15' set $font 'Product Sans:pixelsize=15'
bindsym $mod+d exec "dmenu_run -fn $font -nb $bg -sb $accent -nf $fg -sf $bg" bindsym $mod+d exec "dmenu_run -b -fn $font -nb $bg -sb $bg -nf $fg -sf $accent"
bindsym $mod+space exec "dmenu_run -fn $font -nb $bg -sb $accent -nf $fg -sf $bg"
# Screenhot # Screenhot
bindsym $mod+Shift+p exec "flameshot gui" bindsym $mod+Shift+p exec "flameshot gui"
@@ -159,7 +158,7 @@ client.background $border
# i3-gaps # i3-gaps
gaps inner 4 gaps inner 4
smart_gaps on #smart_gaps on
# ============================== Start # ============================== Start
exec setxkbmap -layout za exec setxkbmap -layout za

View File

@@ -95,10 +95,12 @@ let g:lightline.separator = { 'left': '', 'right': '' }
" tab bar " tab bar
let g:lightline.tabline = {'left': [['buffers']]} let g:lightline.tabline = {'left': [['buffers']]}
let g:lightline#bufferline#show_number = 1 let g:lightline#bufferline#show_number = 2
let g:lightline#bufferline#shorten_path = 0 let g:lightline#bufferline#shorten_path = 0
let g:lightline#bufferline#unnamed = '[No Name]' let g:lightline#bufferline#unnamed = '[No Name]'
"let g:lightline#bufferline#auto_hide = 4000
"let g:lightline#bufferline#enable_devicons = 1 "let g:lightline#bufferline#enable_devicons = 1
autocmd BufWritePost,TextChanged,TextChangedI * call lightline#update()
let g:lightline.component_expand = {'buffers': 'lightline#bufferline#buffers'} let g:lightline.component_expand = {'buffers': 'lightline#bufferline#buffers'}
let g:lightline.component_type = {'buffers': 'tabsel'} let g:lightline.component_type = {'buffers': 'tabsel'}