2016-01-13 22:18:22 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
wget https://raw.githubusercontent.com/solarized/xresources/master/Xresources.light -O solarized.light
|
|
|
|
wget https://raw.githubusercontent.com/solarized/xresources/master/Xresources.dark -O solarized.dark
|
|
|
|
mkdir -p $HOME/.local/share/fonts
|
2016-02-20 23:53:56 +01:00
|
|
|
echo $(for i in "" "%20Bold" "%20Oblique" "%20Bold%20Oblique"; do
|
|
|
|
cd $HOME/.local/share/fonts
|
|
|
|
wget http://raw.githubusercontent.com/powerline/fonts/master/DejaVuSansMono/DejaVu%20Sans%20Mono$i%20for%20Powerline.ttf
|
|
|
|
done)
|
2016-01-13 22:18:22 +01:00
|
|
|
|