From 14db2e230386a1221c8945bc665293ed4ec77e52 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sat, 25 Jan 2020 02:26:50 +0100 Subject: [PATCH] removed cached emacs-lisp for polybar --- org/config-website/polybar.org | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/org/config-website/polybar.org b/org/config-website/polybar.org index 9939276..f3f8e9e 100644 --- a/org/config-website/polybar.org +++ b/org/config-website/polybar.org @@ -272,7 +272,7 @@ | Fira Sans | Fira Sans Book:style=Book:pixelsize=10 | 1 | Text display | | IPA Mincho | IPAMincho:style=regular:pixelsize=6 | 0 | Japanese text display | | Unifont | unifont:fontformat=truetype:size=6:antialias=false | 0 | Fallback font | - | NotoEmoji | NotoEmoji:scale=12:style=Book | 0 | Emoji display | + | NotoEmoji | NotoEmoji:style=Book:scale=16 | 0 | Emoji display | | Siji | Siji:pixelsize=8 | 0 | Symbol display | | Default font | fixed:pixelsize=8 | 0 | Fallback font | @@ -525,14 +525,11 @@ the computer it is running whether or not the second mount point to my home partition should be included. #+NAME: include-home-partition - #+BEGIN_SRC emacs-lisp :tangle no :cache yes :exports code + #+BEGIN_SRC emacs-lisp :tangle no :exports code (if (string= system-name "Marpa") "mount-1 = /home") #+END_SRC - #+RESULTS[3eb35c69438ba3b982ebe442fa64f8879b7b727b]: include-home-partition - : mount-1 = /home - #+BEGIN_SRC conf-windows mount-0 = / <> @@ -679,14 +676,11 @@ hardware I am using, I am going to rely on the machine’s hostname and on some Elisp code to get this setting right. #+NAME: name-wlan-interface - #+BEGIN_SRC emacs-lisp :exports code :tangle no :cache yes + #+BEGIN_SRC emacs-lisp :exports code :tangle no (cond ((string= system-name "Marpa") "wlp8s0") ((string= system-name "Gampo") "wlp3s0")) #+END_SRC - #+RESULTS[41ce3d07b3db680b9740aa0cd720a0b0c47ff771]: name-wlan-interface - : wlp8s0 - #+BEGIN_SRC conf-windows interface = <> #+END_SRC @@ -719,14 +713,11 @@ And just like the Wlan module, it requires an interface which can vary depending on the machine I am using, hence this piece of Elisp: #+NAME: name-eth-interface - #+BEGIN_SRC emacs-lisp :exports code :tangle no :cache yes + #+BEGIN_SRC emacs-lisp :exports code :tangle no (cond ((string= system-name "Marpa") "enp9s0") ((string= system-name "Gampo") "enp0s25")) #+END_SRC - #+RESULTS[c39eb1698bae4be041f1378b290c4ae6d4dadf42]: name-eth-interface - : enp9s0 - #+BEGIN_SRC conf-windows interface = <> #+END_SRC