removed cached emacs-lisp for polybar
This commit is contained in:
		
							parent
							
								
									40314a787b
								
							
						
					
					
						commit
						14db2e2303
					
				@ -272,7 +272,7 @@
 | 
				
			|||||||
    | Fira Sans    | Fira Sans Book:style=Book:pixelsize=10             |               1 | Text display          |
 | 
					    | Fira Sans    | Fira Sans Book:style=Book:pixelsize=10             |               1 | Text display          |
 | 
				
			||||||
    | IPA Mincho   | IPAMincho:style=regular:pixelsize=6                |               0 | Japanese text display |
 | 
					    | IPA Mincho   | IPAMincho:style=regular:pixelsize=6                |               0 | Japanese text display |
 | 
				
			||||||
    | Unifont      | unifont:fontformat=truetype:size=6:antialias=false |               0 | Fallback font         |
 | 
					    | 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        |
 | 
					    | Siji         | Siji:pixelsize=8                                   |               0 | Symbol display        |
 | 
				
			||||||
    | Default font | fixed:pixelsize=8                                  |               0 | Fallback font         |
 | 
					    | 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
 | 
					    the computer it is running whether or  not the second mount point to my home
 | 
				
			||||||
    partition should be included.
 | 
					    partition should be included.
 | 
				
			||||||
    #+NAME: include-home-partition
 | 
					    #+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")
 | 
					      (if (string= system-name "Marpa")
 | 
				
			||||||
          "mount-1 = /home")
 | 
					          "mount-1 = /home")
 | 
				
			||||||
    #+END_SRC
 | 
					    #+END_SRC
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    #+RESULTS[3eb35c69438ba3b982ebe442fa64f8879b7b727b]: include-home-partition
 | 
					 | 
				
			||||||
    : mount-1 = /home
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    #+BEGIN_SRC conf-windows
 | 
					    #+BEGIN_SRC conf-windows
 | 
				
			||||||
      mount-0 = /
 | 
					      mount-0 = /
 | 
				
			||||||
      <<include-home-partition()>>
 | 
					      <<include-home-partition()>>
 | 
				
			||||||
@ -679,14 +676,11 @@
 | 
				
			|||||||
    hardware I  am using, I am  going to rely  on the machine’s hostname  and on
 | 
					    hardware I  am using, I am  going to rely  on the machine’s hostname  and on
 | 
				
			||||||
    some Elisp code to get this setting right.
 | 
					    some Elisp code to get this setting right.
 | 
				
			||||||
    #+NAME: name-wlan-interface
 | 
					    #+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")
 | 
					      (cond ((string= system-name "Marpa") "wlp8s0")
 | 
				
			||||||
            ((string= system-name "Gampo") "wlp3s0"))
 | 
					            ((string= system-name "Gampo") "wlp3s0"))
 | 
				
			||||||
    #+END_SRC
 | 
					    #+END_SRC
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    #+RESULTS[41ce3d07b3db680b9740aa0cd720a0b0c47ff771]: name-wlan-interface
 | 
					 | 
				
			||||||
    : wlp8s0
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    #+BEGIN_SRC conf-windows
 | 
					    #+BEGIN_SRC conf-windows
 | 
				
			||||||
      interface = <<name-wlan-interface()>>
 | 
					      interface = <<name-wlan-interface()>>
 | 
				
			||||||
    #+END_SRC
 | 
					    #+END_SRC
 | 
				
			||||||
@ -719,14 +713,11 @@
 | 
				
			|||||||
    And  just like  the Wlan  module, it  requires an  interface which  can vary
 | 
					    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:
 | 
					    depending on the machine I am using, hence this piece of Elisp:
 | 
				
			||||||
    #+NAME: name-eth-interface
 | 
					    #+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")
 | 
					      (cond ((string= system-name "Marpa") "enp9s0")
 | 
				
			||||||
            ((string= system-name "Gampo") "enp0s25"))
 | 
					            ((string= system-name "Gampo") "enp0s25"))
 | 
				
			||||||
    #+END_SRC
 | 
					    #+END_SRC
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    #+RESULTS[c39eb1698bae4be041f1378b290c4ae6d4dadf42]: name-eth-interface
 | 
					 | 
				
			||||||
    : enp9s0
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    #+BEGIN_SRC conf-windows
 | 
					    #+BEGIN_SRC conf-windows
 | 
				
			||||||
      interface = <<name-eth-interface()>>
 | 
					      interface = <<name-eth-interface()>>
 | 
				
			||||||
    #+END_SRC
 | 
					    #+END_SRC
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user