diff --git a/polybar/config b/polybar/config index 9a110ef..455aa51 100644 --- a/polybar/config +++ b/polybar/config @@ -89,6 +89,7 @@ interval = 600 label = %output% format-background = ${xrdb:color5:#222} +format-foreground = #ffffff format-padding = 2 [module/i3] @@ -131,7 +132,9 @@ interval = 5 format-connected = format-connected-background = ${xrdb:color6:#222} +format-connected-foreground = #ffffff format-disconnected-background = ${xrdb:color6:#222} +format-disconnected-foreground = #ffffff format-connected-padding = 2 format-disconnected-padding = 2 @@ -143,7 +146,7 @@ format-disconnected = ; (default) ; ; -format-packetloss = +format-packetloss = ; Available tokens: ; %ifname% [wireless+wired] @@ -175,22 +178,6 @@ label-disconnected-foreground = #66ffffff label-packetloss = %essid% label-packetloss-foreground = #eefafafa -; Only applies if is used -ramp-signal-0 = 😱 -ramp-signal-1 = 😠 -ramp-signal-2 = 😒 -ramp-signal-3 = 😊 -ramp-signal-4 = 😃 -ramp-signal-5 = 😈 - -; Only applies if is used -animation-packetloss-0 = ⚠ -animation-packetloss-0-foreground = #ffa64c -animation-packetloss-1 = 📶 -animation-packetloss-1-foreground = #000000 -; Framerate in milliseconds -animation-packetloss-framerate = 500 - [module/date] type = internal/date @@ -221,7 +208,9 @@ type = internal/battery full-at = 98 format-discharging-background = ${xrdb:color4:#222} +format-discharging-foreground = #ffffff format-charging-background = ${xrdb:color4:#222} +format-charging-foreground = #ffffff format-charging-padding = 2 format-discharging-padding = 2 @@ -237,14 +226,14 @@ time-format = %H:%M ; ; ; -format-charging = +format-charging = ; Available tags: ; (default) ; ; ; -format-discharging = +format-discharging = ; Available tags: ; (default) @@ -268,33 +257,8 @@ label-discharging = dis: %percentage%% ; %percentage% (default) label-full = full -; Only applies if is used -ramp-capacity-0 =  -ramp-capacity-1 =  -ramp-capacity-2 =  -ramp-capacity-3 =  -ramp-capacity-4 =  - ; Only applies if is used -bar-capacity-width = 10 - -; Only applies if is used -animation-charging-0 =  -animation-charging-1 =  -animation-charging-2 =  -animation-charging-3 =  -animation-charging-4 =  -; Framerate in milliseconds -animation-charging-framerate = 750 - -; Only applies if is used -animation-discharging-0 =  -animation-discharging-1 =  -animation-discharging-2 =  -animation-discharging-3 =  -animation-discharging-4 =  -; Framerate in milliseconds -animation-discharging-framerate = 500 +;bar-capacity-width = 10 [module/xwindow] type = internal/xwindow diff --git a/vim/.vimrc b/vim/.vimrc index b9cbd9b..036eac7 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -6,3 +6,19 @@ so ~/.vim/plugins.vim map :NERDTreeToggle set laststatus=2 set noshowmode +set showmatch + +let g:lightline = { + \ 'colorscheme': 'srcery_drk', + \ } + +set number +syntax on + +let g:NERDTreeDirArrowExpandable = '▸' +let g:NERDTreeDirArrowCollapsible = '▾' + +autocmd StdinReadPre * let s:std_in=1 +autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif + +autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif