1
Fork 0

fix stylesheet things

This commit is contained in:
Jake Howard 2016-09-20 21:39:53 +01:00
parent ac0483a69c
commit 437407a6a8
Signed by: jake
GPG key ID: 57AFB45680EDD477
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
title: My Level 3 Apprenticeship title: Fix steam under linux with an iGPU
template: blog template: blog
Running steam on linux is great, except for the game support obviously. But running it on an iGPU has recently been causing me problems, mainly under Arch. Running steam on linux is great, except for the game support obviously. But running it on an iGPU has recently been causing me problems, mainly under Arch.
@ -25,7 +25,7 @@ libGL error: failed to load driver: swrast
## The solution ## The solution
I have no idea why it works, or why it works, but speaking to some people online, this is the best solution: I have no idea why it works, or why it works, but speaking to some people online, this is the best solution:
``` ```bash
LD_PRELOAD='/usr/$LIB/libstdc++.so.6 /usr/$LIB/libgcc_s.so.1 /usr/$LIB/libxcb.so.1 /usr/$LIB/libgpg-error.so' /usr/bin/steam %U LD_PRELOAD='/usr/$LIB/libstdc++.so.6 /usr/$LIB/libgcc_s.so.1 /usr/$LIB/libxcb.so.1 /usr/$LIB/libgpg-error.so' /usr/bin/steam %U
``` ```

View file

@ -8,6 +8,7 @@ nose2==0.6.5
pelican-minify==0.9 pelican-minify==0.9
pelican==3.6.3 pelican==3.6.3
pyembed-markdown==1.1.0 pyembed-markdown==1.1.0
pygments-style-github==0.4
python-resize-image==1.1.3 python-resize-image==1.1.3
pyyaml==3.12 pyyaml==3.12
sh==1.11 sh==1.11

View file

@ -8,7 +8,7 @@ then
fi fi
echo ">> Generating Pygments styles..." echo ">> Generating Pygments styles..."
env/bin/pygmentize -S monokai -f html -a .highlight > theme/static/src/scss/pygment.css env/bin/pygmentize -S github -f html -a .highlight > theme/static/src/scss/pygment.css
echo ">> Building SCSS..." echo ">> Building SCSS..."
node-sass theme/static/src/scss/index.scss theme/static/build/css/index.css --source-map-embed node-sass theme/static/src/scss/index.scss theme/static/build/css/index.css --source-map-embed

View file

@ -24,7 +24,6 @@ $btn-srobo-border: darken($btn-srobo-bg, 5%);
.highlight > pre { .highlight > pre {
background-color: transparent;
font-size: $font-size-base; font-size: $font-size-base;
} }