├── .gitignore ├── README.md ├── XCompose ├── Xmodmaprc ├── Xresources ├── aria2.conf ├── bash_profile ├── bashrc ├── bcrc ├── bspwmrc ├── color_schemes ├── current-dark ├── current-light ├── current-symbolic ├── ivory-dark.yaml ├── ivory-light.yaml └── symbolic.yaml ├── compton.conf ├── ctags ├── dgenrc ├── dhexrc ├── dircolors ├── dwb_colors ├── dwb_config ├── dwb_keys ├── dzen2_xresources-dark ├── dzen2_xresources-light ├── fonts.conf ├── gitconfig ├── gnuplot ├── gtk2_gvim-dark ├── gtk2_gvim-light ├── gtk2_settings ├── gtk3_settings ├── gvimrc ├── hgrc ├── i3status_config ├── inputrc ├── jinja_filters └── trtpl_filters.py ├── jumanjirc ├── lftprc ├── lircrc ├── mailcap ├── mpdconf ├── mpv_config ├── mpv_keys ├── muttrc ├── ncmpcpp_config ├── ncmpcpp_keys ├── newsbeuter_config ├── npmrc ├── override.css-dark ├── override.css-light ├── patches ├── dmenu-friendly_control_w.diff ├── dmenu-quiet.diff ├── paps-header_options.diff └── refind-neutral_text_colors.patch ├── profile ├── shell_aliases ├── shell_functions ├── simpleswitcher_xresources-dark ├── simpleswitcher_xresources-light ├── slrn_macros ├── hide_cursor.sl ├── hide_or_quit.sl ├── next_prev_threads.sl └── xface.sl ├── slrnrc ├── startpage.html ├── style.css ├── sxhkdrc ├── sxiv_config ├── templates ├── hybrid │ ├── bin │ │ ├── bspwm_colors.j2 │ │ ├── dmenu_colors.j2 │ │ ├── dnotify_colors.j2 │ │ ├── panel_colors.j2 │ │ ├── setrootbg.j2 │ │ └── show_xface_colors.j2 │ └── dotfiles │ │ ├── dzen2_xresources.j2 │ │ ├── gtk2_gvim.j2 │ │ ├── override.css.j2 │ │ ├── simpleswitcher_xresources.j2 │ │ ├── terminal_colors │ │ ├── redef.j2 │ │ ├── redef_console.j2 │ │ └── xresources.j2 │ │ ├── termite_config.j2 │ │ ├── themes │ │ └── vim │ │ │ └── raven.vim.j2 │ │ └── tint2rc.j2 ├── light_only │ └── dotfiles │ │ ├── dwb_colors.j2 │ │ ├── startpage.html.j2 │ │ └── zathura_colors.j2 └── symbolic │ └── dotfiles │ └── themes │ └── vim │ ├── raven256.vim.j2 │ └── raven8.vim.j2 ├── terminal_colors ├── redef-dark ├── redef-light ├── redef_console-dark ├── redef_console-light ├── xresources-dark └── xresources-light ├── termite_config-dark ├── termite_config-light ├── texmf └── tex │ └── latex │ └── miscquirks │ └── miscquirks.sty ├── themes ├── fontforge │ └── mango_fontforge ├── mutt │ └── colors.raven ├── openbox │ ├── bullet.xbm │ ├── close.xbm │ ├── iconify.xbm │ ├── max.xbm │ ├── themerc │ ├── themerc-dark │ └── themerc-light ├── slrn │ └── slrn_theme └── vim │ ├── bubblegum.vim │ ├── raven.vim-dark │ ├── raven.vim-light │ ├── raven256.vim │ └── raven8.vim ├── tint2rc-dark ├── tint2rc-light ├── tmux.conf ├── toprc ├── vimrc ├── xinitrc ├── zathura_colors └── zathura_config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ☂ 2 | -------------------------------------------------------------------------------- /XCompose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/XCompose -------------------------------------------------------------------------------- /Xmodmaprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/Xmodmaprc -------------------------------------------------------------------------------- /Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/Xresources -------------------------------------------------------------------------------- /aria2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/aria2.conf -------------------------------------------------------------------------------- /bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/bash_profile -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/bashrc -------------------------------------------------------------------------------- /bcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/bcrc -------------------------------------------------------------------------------- /bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/bspwmrc -------------------------------------------------------------------------------- /color_schemes/current-dark: -------------------------------------------------------------------------------- 1 | ivory-dark.yaml -------------------------------------------------------------------------------- /color_schemes/current-light: -------------------------------------------------------------------------------- 1 | ivory-light.yaml -------------------------------------------------------------------------------- /color_schemes/current-symbolic: -------------------------------------------------------------------------------- 1 | symbolic.yaml -------------------------------------------------------------------------------- /color_schemes/ivory-dark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/color_schemes/ivory-dark.yaml -------------------------------------------------------------------------------- /color_schemes/ivory-light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/color_schemes/ivory-light.yaml -------------------------------------------------------------------------------- /color_schemes/symbolic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/color_schemes/symbolic.yaml -------------------------------------------------------------------------------- /compton.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/compton.conf -------------------------------------------------------------------------------- /ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/ctags -------------------------------------------------------------------------------- /dgenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/dgenrc -------------------------------------------------------------------------------- /dhexrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/dhexrc -------------------------------------------------------------------------------- /dircolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/dircolors -------------------------------------------------------------------------------- /dwb_colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/dwb_colors -------------------------------------------------------------------------------- /dwb_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/dwb_config -------------------------------------------------------------------------------- /dwb_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/dwb_keys -------------------------------------------------------------------------------- /dzen2_xresources-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/dzen2_xresources-dark -------------------------------------------------------------------------------- /dzen2_xresources-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/dzen2_xresources-light -------------------------------------------------------------------------------- /fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/fonts.conf -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/gitconfig -------------------------------------------------------------------------------- /gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/gnuplot -------------------------------------------------------------------------------- /gtk2_gvim-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/gtk2_gvim-dark -------------------------------------------------------------------------------- /gtk2_gvim-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/gtk2_gvim-light -------------------------------------------------------------------------------- /gtk2_settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/gtk2_settings -------------------------------------------------------------------------------- /gtk3_settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/gtk3_settings -------------------------------------------------------------------------------- /gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/gvimrc -------------------------------------------------------------------------------- /hgrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/hgrc -------------------------------------------------------------------------------- /i3status_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/i3status_config -------------------------------------------------------------------------------- /inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/inputrc -------------------------------------------------------------------------------- /jinja_filters/trtpl_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/jinja_filters/trtpl_filters.py -------------------------------------------------------------------------------- /jumanjirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/jumanjirc -------------------------------------------------------------------------------- /lftprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/lftprc -------------------------------------------------------------------------------- /lircrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/lircrc -------------------------------------------------------------------------------- /mailcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/mailcap -------------------------------------------------------------------------------- /mpdconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/mpdconf -------------------------------------------------------------------------------- /mpv_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/mpv_config -------------------------------------------------------------------------------- /mpv_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/mpv_keys -------------------------------------------------------------------------------- /muttrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/muttrc -------------------------------------------------------------------------------- /ncmpcpp_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/ncmpcpp_config -------------------------------------------------------------------------------- /ncmpcpp_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/ncmpcpp_keys -------------------------------------------------------------------------------- /newsbeuter_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/newsbeuter_config -------------------------------------------------------------------------------- /npmrc: -------------------------------------------------------------------------------- 1 | prefix = ~/.local 2 | -------------------------------------------------------------------------------- /override.css-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/override.css-dark -------------------------------------------------------------------------------- /override.css-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/override.css-light -------------------------------------------------------------------------------- /patches/dmenu-friendly_control_w.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/patches/dmenu-friendly_control_w.diff -------------------------------------------------------------------------------- /patches/dmenu-quiet.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/patches/dmenu-quiet.diff -------------------------------------------------------------------------------- /patches/paps-header_options.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/patches/paps-header_options.diff -------------------------------------------------------------------------------- /patches/refind-neutral_text_colors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/patches/refind-neutral_text_colors.patch -------------------------------------------------------------------------------- /profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/profile -------------------------------------------------------------------------------- /shell_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/shell_aliases -------------------------------------------------------------------------------- /shell_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/shell_functions -------------------------------------------------------------------------------- /simpleswitcher_xresources-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/simpleswitcher_xresources-dark -------------------------------------------------------------------------------- /simpleswitcher_xresources-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/simpleswitcher_xresources-light -------------------------------------------------------------------------------- /slrn_macros/hide_cursor.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/slrn_macros/hide_cursor.sl -------------------------------------------------------------------------------- /slrn_macros/hide_or_quit.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/slrn_macros/hide_or_quit.sl -------------------------------------------------------------------------------- /slrn_macros/next_prev_threads.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/slrn_macros/next_prev_threads.sl -------------------------------------------------------------------------------- /slrn_macros/xface.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/slrn_macros/xface.sl -------------------------------------------------------------------------------- /slrnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/slrnrc -------------------------------------------------------------------------------- /startpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/startpage.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/style.css -------------------------------------------------------------------------------- /sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/sxhkdrc -------------------------------------------------------------------------------- /sxiv_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/sxiv_config -------------------------------------------------------------------------------- /templates/hybrid/bin/bspwm_colors.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/bin/bspwm_colors.j2 -------------------------------------------------------------------------------- /templates/hybrid/bin/dmenu_colors.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/bin/dmenu_colors.j2 -------------------------------------------------------------------------------- /templates/hybrid/bin/dnotify_colors.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/bin/dnotify_colors.j2 -------------------------------------------------------------------------------- /templates/hybrid/bin/panel_colors.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/bin/panel_colors.j2 -------------------------------------------------------------------------------- /templates/hybrid/bin/setrootbg.j2: -------------------------------------------------------------------------------- 1 | #! /bin/dash 2 | 3 | xsetroot -solid '{{bg_dip}}' 4 | -------------------------------------------------------------------------------- /templates/hybrid/bin/show_xface_colors.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/bin/show_xface_colors.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/dzen2_xresources.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/dzen2_xresources.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/gtk2_gvim.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/gtk2_gvim.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/override.css.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/override.css.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/simpleswitcher_xresources.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/simpleswitcher_xresources.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/terminal_colors/redef.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/terminal_colors/redef.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/terminal_colors/redef_console.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/terminal_colors/redef_console.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/terminal_colors/xresources.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/terminal_colors/xresources.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/termite_config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/termite_config.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/themes/vim/raven.vim.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/themes/vim/raven.vim.j2 -------------------------------------------------------------------------------- /templates/hybrid/dotfiles/tint2rc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/hybrid/dotfiles/tint2rc.j2 -------------------------------------------------------------------------------- /templates/light_only/dotfiles/dwb_colors.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/light_only/dotfiles/dwb_colors.j2 -------------------------------------------------------------------------------- /templates/light_only/dotfiles/startpage.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/light_only/dotfiles/startpage.html.j2 -------------------------------------------------------------------------------- /templates/light_only/dotfiles/zathura_colors.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/light_only/dotfiles/zathura_colors.j2 -------------------------------------------------------------------------------- /templates/symbolic/dotfiles/themes/vim/raven256.vim.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/symbolic/dotfiles/themes/vim/raven256.vim.j2 -------------------------------------------------------------------------------- /templates/symbolic/dotfiles/themes/vim/raven8.vim.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/templates/symbolic/dotfiles/themes/vim/raven8.vim.j2 -------------------------------------------------------------------------------- /terminal_colors/redef-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/terminal_colors/redef-dark -------------------------------------------------------------------------------- /terminal_colors/redef-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/terminal_colors/redef-light -------------------------------------------------------------------------------- /terminal_colors/redef_console-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/terminal_colors/redef_console-dark -------------------------------------------------------------------------------- /terminal_colors/redef_console-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/terminal_colors/redef_console-light -------------------------------------------------------------------------------- /terminal_colors/xresources-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/terminal_colors/xresources-dark -------------------------------------------------------------------------------- /terminal_colors/xresources-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/terminal_colors/xresources-light -------------------------------------------------------------------------------- /termite_config-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/termite_config-dark -------------------------------------------------------------------------------- /termite_config-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/termite_config-light -------------------------------------------------------------------------------- /texmf/tex/latex/miscquirks/miscquirks.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/texmf/tex/latex/miscquirks/miscquirks.sty -------------------------------------------------------------------------------- /themes/fontforge/mango_fontforge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/fontforge/mango_fontforge -------------------------------------------------------------------------------- /themes/mutt/colors.raven: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/mutt/colors.raven -------------------------------------------------------------------------------- /themes/openbox/bullet.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/openbox/bullet.xbm -------------------------------------------------------------------------------- /themes/openbox/close.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/openbox/close.xbm -------------------------------------------------------------------------------- /themes/openbox/iconify.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/openbox/iconify.xbm -------------------------------------------------------------------------------- /themes/openbox/max.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/openbox/max.xbm -------------------------------------------------------------------------------- /themes/openbox/themerc: -------------------------------------------------------------------------------- 1 | themerc-light -------------------------------------------------------------------------------- /themes/openbox/themerc-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/openbox/themerc-dark -------------------------------------------------------------------------------- /themes/openbox/themerc-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/openbox/themerc-light -------------------------------------------------------------------------------- /themes/slrn/slrn_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/slrn/slrn_theme -------------------------------------------------------------------------------- /themes/vim/bubblegum.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/vim/bubblegum.vim -------------------------------------------------------------------------------- /themes/vim/raven.vim-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/vim/raven.vim-dark -------------------------------------------------------------------------------- /themes/vim/raven.vim-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/vim/raven.vim-light -------------------------------------------------------------------------------- /themes/vim/raven256.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/vim/raven256.vim -------------------------------------------------------------------------------- /themes/vim/raven8.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/themes/vim/raven8.vim -------------------------------------------------------------------------------- /tint2rc-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/tint2rc-dark -------------------------------------------------------------------------------- /tint2rc-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/tint2rc-light -------------------------------------------------------------------------------- /tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/tmux.conf -------------------------------------------------------------------------------- /toprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/toprc -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/vimrc -------------------------------------------------------------------------------- /xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/xinitrc -------------------------------------------------------------------------------- /zathura_colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/zathura_colors -------------------------------------------------------------------------------- /zathura_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baskerville/etc-linux/HEAD/zathura_config --------------------------------------------------------------------------------