Geoffrey Frogeye
610167c8e3
Sauce Code Pro did not support some useful UTF-8 chars. So switched to a uglier font but which supports them. Since Xterm doesn't support fallback fonts, I wonder if I can merge both.
11 lines
489 B
Bash
Executable file
11 lines
489 B
Bash
Executable file
#!/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
|
|
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)
|
|
|