From 5df567954f5ab0995e287188cfb5c41ef6dc4ac4 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sun, 17 May 2020 20:39:17 +0200 Subject: [PATCH] Forgot to remove those --- org/config/awesome.org | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/org/config/awesome.org b/org/config/awesome.org index 0aca509..9075569 100644 --- a/org/config/awesome.org +++ b/org/config/awesome.org @@ -6,7 +6,7 @@ #+HTML_HEAD_EXTRA: #+HTML_HEAD_EXTRA: #+PROPERTY: header-args :noweb yes :exports code :tangle no :exports none -#+PROPERTY: header-args:lua :tangle ~/.config/awesome/rc.lua :comments link :exports code :noweb yes +#+PROPERTY: header-args:lua :tangle ~/.config/awesome/rc.lua :exports code :noweb yes #+STARTUP: content * Table of Contents :TOC:noexport: @@ -733,7 +733,7 @@ #+END_SRC So, here’s the actual configuration code for the taglist: - #+BEGIN_SRC lua :comments link + #+BEGIN_SRC lua local taglist_buttons = gears.table.join( <>, <>, @@ -803,7 +803,7 @@ #+END_SRC So, here’s the actual code for the tasklist: - #+BEGIN_SRC lua :comments link + #+BEGIN_SRC lua local tasklist_buttons = gears.table.join( <>, <>, @@ -825,7 +825,7 @@ wallpaper should be redisplayed since it won’t necessarily fit the new geometry of the screen. And remember, I have a [[#h-39816309-d36d-4fb1-9c76-942a85b7407b][function that does exactly that]]! Let’s connect this function to the geometry change signal: - #+BEGIN_SRC lua :comments link + #+BEGIN_SRC lua screen.connect_signal("property::geometry", set_wallpaper) #+END_SRC @@ -934,7 +934,7 @@ #+END_SRC In the end, our code looks like this: - #+BEGIN_SRC lua :comments link + #+BEGIN_SRC lua awful.screen.connect_for_each_screen(function(s) <> <>