Compare commits

...

2 Commits

  1. 3
      dot_config/fish/config.fish.tmpl
  2. 57
      dot_config/i3/config.tmpl
  3. 26
      dot_config/i3blocks/i3blocks.conf.tmpl
  4. 10
      dot_vimrc.tmpl

3
dot_config/fish/config.fish.tmpl

@ -307,5 +307,6 @@ abbr xya "export-pkgs"
# task sync > /dev/null 2>&1
source /home/kevin/.config/fish/key_abbr.fish > /dev/null
wal -r
# wal -r
cat /home/kevin/.cache/wal/sequences
# ~/scripts/xmodmap-custom

57
dot_config/i3/config.tmpl

@ -579,8 +579,8 @@ bar {
{{ if eq .chezmoi.hostname "x1-carbon" }}
font pango:$sb_font 17
{{ else }}
# font pango:$sb_font 17
font pango:$sb_font 16
font pango:$sb_font 17
# font pango:$sb_font 16
{{ end }}
colors {
# 0 (transparent) -> 255 (opaque) in hex
@ -595,7 +595,8 @@ bar {
tray_output none
# status_command i3blocks -c ~/.config/i3blocks/i3blocks.conf
status_command 2>/tmp/i3blocks.err i3blocks -vvv -c ~/.config/i3blocks/i3blocks.conf | tee /tmp/i3blocks.out
output $main
# output $main
output $secondary
wheel_up_cmd nop
wheel_down_cmd nop
}
@ -604,31 +605,31 @@ bar {
# secondary bar [[[ #
bar {
output $secondary
{{ if eq .chezmoi.hostname "x1-carbon" }}
font pango:$sb_font 18
{{ else }}
font pango:$sb_font 21
# font pango:$sb_font 20
# font pango:$sb_font 17
{{ end }}
# output $main
i3bar_command i3bar -t
colors {
background $black$bar_trans
# border, bg, text color
# focused_workspace $inactive_ws_bg $bg $focused_ws_text
focused_workspace $inactive_ws_bg $bg $fg
active_workspace $inactive_ws_bg $fg$active_ws_trans $fg
inactive_workspace $inactive_ws_bg $inactive_ws_bg$inactive_ws_trans $fg
}
status_command i3blocks -c ~/.config/i3blocks/i3blocks-secondary.conf
# status_command 2>/tmp/i3blocks-sam.err i3blocks -vvv -c ~/.config/i3blocks/sam-i3blocks.conf | tee /tmp/i3blocks-sam.out
tray_output none
wheel_up_cmd nop
wheel_down_cmd nop
}
# bar {
# output $secondary
# {{ if eq .chezmoi.hostname "x1-carbon" }}
# font pango:$sb_font 18
# {{ else }}
# font pango:$sb_font 21
# # font pango:$sb_font 20
# # font pango:$sb_font 17
# {{ end }}
# # output $main
# i3bar_command i3bar -t
# colors {
# background $black$bar_trans
# # border, bg, text color
# # focused_workspace $inactive_ws_bg $bg $focused_ws_text
# focused_workspace $inactive_ws_bg $bg $fg
# active_workspace $inactive_ws_bg $fg$active_ws_trans $fg
# inactive_workspace $inactive_ws_bg $inactive_ws_bg$inactive_ws_trans $fg
# }
# status_command i3blocks -c ~/.config/i3blocks/i3blocks-secondary.conf
# # status_command 2>/tmp/i3blocks-sam.err i3blocks -vvv -c ~/.config/i3blocks/sam-i3blocks.conf | tee /tmp/i3blocks-sam.out
# tray_output none
# wheel_up_cmd nop
# wheel_down_cmd nop
# }
# ]]] secondary bar #

26
dot_config/i3blocks/i3blocks.conf.tmpl

@ -114,16 +114,16 @@ interval=60
# SHORT_NAME=
# interval=5
[spotify]
# command=python ~/linux-config/configs/i3blocks-scripts/spotify.py
# label=
label=
# label=🎧
# green
# color=#198c19
# aqua
# color=#2d7272
interval=5
# [spotify]
# # command=python ~/linux-config/configs/i3blocks-scripts/spotify.py
# # label=
# label=
# # label=🎧
# # green
# # color=#198c19
# # aqua
# # color=#2d7272
# interval=5
{{ end }}
# ]]] volume/spotify #
@ -191,9 +191,9 @@ WIDTH=220
# name [[[ #
[name]
label=
interval=30
# [name]
# label=
# interval=30
{{ end }}
# ]]] name #

10
dot_vimrc.tmpl

@ -150,10 +150,10 @@ Plug 'vim-scripts/L9'
" find files from within Vim
" Plug 'vim-scripts/FuzzyFinder'
{{ if not .gui }}
" {{ if not .gui }}
" Gotham color scheme
Plug 'whatyouhide/vim-gotham'
{{ end }}
" {{ end }}
" " collection of Vim color schemes
" Plug 'flazz/vim-colorschemes'
@ -254,6 +254,7 @@ Plug 'vim-airline/vim-airline'
let g:airline_section_c = '%F'
Plug 'vim-airline/vim-airline-themes'
let g:airline_powerline_fonts = 1
let g:airline_theme='supernova'
" continue Markdown lists when started
" arc
@ -261,6 +262,7 @@ Plug 'dkarter/bullets.vim'
" coordinate Vim color scheme with terminal color scheme
Plug 'dylanaraps/wal.vim'
Plug 'AlphaTechnolog/pywal.nvim', { 'as': 'pywal' }
" Plug 'morhetz/gruvbox'
Plug 'bluz71/vim-nightfly-colors', { 'as': 'nightfly' }
@ -369,7 +371,9 @@ call plug#end()
{{ if .gui }}
" autocmd vimenter * ++nested colorscheme gruvbox
" colorscheme wal
colorscheme nightfly
colorscheme pywal
" colorscheme nightfly
" colorscheme gotham256
{{ else }}
colorscheme gotham256
{{ end }}

Loading…
Cancel
Save