From 437407a6a876aa29faafa0d0e00c335ee00967c4 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 20 Sep 2016 21:39:53 +0100 Subject: [PATCH] fix stylesheet things --- content/blog/steam-igpu-linux.md | 4 ++-- requirements.txt | 1 + scripts/build-scss.sh | 2 +- theme/static/src/scss/library-overrides.scss | 1 - 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/blog/steam-igpu-linux.md b/content/blog/steam-igpu-linux.md index 63dce90..20f0627 100644 --- a/content/blog/steam-igpu-linux.md +++ b/content/blog/steam-igpu-linux.md @@ -1,4 +1,4 @@ -title: My Level 3 Apprenticeship +title: Fix steam under linux with an iGPU 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. @@ -25,7 +25,7 @@ libGL error: failed to load driver: swrast ## The 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 ``` diff --git a/requirements.txt b/requirements.txt index 4008c60..8423a83 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,6 +8,7 @@ nose2==0.6.5 pelican-minify==0.9 pelican==3.6.3 pyembed-markdown==1.1.0 +pygments-style-github==0.4 python-resize-image==1.1.3 pyyaml==3.12 sh==1.11 diff --git a/scripts/build-scss.sh b/scripts/build-scss.sh index 207416d..164454a 100755 --- a/scripts/build-scss.sh +++ b/scripts/build-scss.sh @@ -8,7 +8,7 @@ then fi 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..." node-sass theme/static/src/scss/index.scss theme/static/build/css/index.css --source-map-embed diff --git a/theme/static/src/scss/library-overrides.scss b/theme/static/src/scss/library-overrides.scss index a91db74..95ef8fb 100644 --- a/theme/static/src/scss/library-overrides.scss +++ b/theme/static/src/scss/library-overrides.scss @@ -24,7 +24,6 @@ $btn-srobo-border: darken($btn-srobo-bg, 5%); .highlight > pre { - background-color: transparent; font-size: $font-size-base; }