dotfiles/config/scripts/changeColors

58 lines
2.3 KiB
Plaintext
Raw Normal View History

2018-07-30 08:55:06 +00:00
#!/usr/bin/env bash
# Fetchs colors from https://github.com/chriskempson/base16 templates
# and apply them into my configuration
scheme="$1"
2018-08-19 09:29:59 +00:00
if [ -z "$scheme" ]
then
echo Please specify a scheme
exit 1
fi
2018-07-30 08:55:06 +00:00
2018-07-30 08:55:06 +00:00
# TODO Verify if scheme is known
mkdir -p $HOME/.local/bin
2018-07-30 08:55:06 +00:00
# Shell (allows to use all colors in Vim while still having nice colors in the rest of the terminal)
2018-08-19 09:29:59 +00:00
curl "https://raw.githubusercontent.com/chriskempson/base16-shell/master/scripts/base16-${scheme}.sh" > ~/.local/bin/colorSchemeApply
chmod +x ~/.local/bin/colorSchemeApply
2018-07-30 08:55:06 +00:00
# Xressources (I'm not sure if this is really needed with shell overriding these but i3 load those resources)
curl "https://raw.githubusercontent.com/chriskempson/base16-xresources/master/xresources/base16-${scheme}-256.Xresources" > ~/.config/Xresources/theme
2018-07-30 08:55:06 +00:00
# Vim
mkdir -p $HOME/.cache/vim
echo -e "let base16colorspace=256\n\"set termguicolors\ncolorscheme base16-${scheme}" > ~/.cache/vim/colorscheme.vim
2018-07-30 08:55:06 +00:00
# FZF
2018-08-19 09:29:59 +00:00
curl "https://raw.githubusercontent.com/nicodebo/base16-fzf/master/bash/base16-${scheme}.config" > ~/.local/bin/colorSchemeApplyFzf
chmod +x ~/.local/bin/colorSchemeApplyFzf
2018-07-30 08:55:06 +00:00
# qutebrowser
mkdir -p $HOME/.config/qutebrowser
2020-05-25 07:05:56 +00:00
curl "https://raw.githubusercontent.com/theova/base16-qutebrowser/master/themes/default/base16-${scheme}.config.py" > ~/.config/qutebrowser/theme.py
2018-07-30 08:55:06 +00:00
2018-08-19 09:29:59 +00:00
# rofi
mkdir -p $HOME/.config/rofi
2018-08-19 09:29:59 +00:00
curl "https://raw.githubusercontent.com/0xdec/base16-rofi/master/themes/base16-${scheme}.rasi" > ~/.config/rofi/theme.rasi
curl "https://raw.githubusercontent.com/0xdec/base16-rofi/master/themes/base16-${scheme}.config" > ~/.config/rofi/theme.config
2019-08-11 15:06:45 +00:00
# Tridactyl
mkdir -p $HOME/.config/tridactyl/themes
2019-08-11 15:06:45 +00:00
curl "https://raw.githubusercontent.com/bezmi/base16-tridactyl/master/base16-${scheme}.css" > ~/.config/tridactyl/themes/theme.css
2018-07-30 08:55:06 +00:00
# TODO dunst (template online, but not to my liking)
# TODO bar (might change bar in the future, so...)
# TODO highlight (there IS a template but the colors look different from vim and mostly the same from when there's no config)
# Reload a bunch of things to make changes immediate
2019-04-14 17:41:33 +00:00
~/.local/bin/colorSchemeApply
~/.local/bin/colorSchemeApplyFzf
# Error masking in case X not running
2019-08-11 15:06:45 +00:00
#xrdb -load ~/.config/Xresources/main 2> /dev/null
xrdb -I$HOME ~/.config/Xresources/main 2> /dev/null
2019-04-14 17:41:33 +00:00
i3-msg reload 2> /dev/null