From da0a6ad0b9641edc4b09dd6028a837d6838b059b Mon Sep 17 00:00:00 2001 From: xeals Date: Tue, 15 Jan 2019 12:00:18 +1100 Subject: [PATCH] feat: downgrade to stable release --- widget/tag-list.fnl | 21 +++++++-------------- widget/task-list.fnl | 9 +++++---- 2 files changed, 12 insertions(+), 18 deletions(-) diff --git a/widget/tag-list.fnl b/widget/tag-list.fnl index 3f27f08..29f1f4a 100644 --- a/widget/tag-list.fnl +++ b/widget/tag-list.fnl @@ -1,4 +1,4 @@ -;;; widget/tag-list.fnl --- Vertical tag list widget +;;; widget/tag-list.fnl --- Pop-out tag list widget ;;; Code: @@ -11,19 +11,12 @@ (fn tag-list [s] (awful.widget.taglist - {:screen s - :filter awful.widget.taglist.filter.selected - :style {:font (.. beautiful.font " Bold 10")} - ;; :widget_template - ;; {1 - ;; {:id "index_role" - ;; :widget wibox.widget.textbox} - ;; :widget wibox.container.margin - ;; :margins 5 - ;; :create_callback - ;; (lambda [self, c3, index, objects])} - :layout wibox.layout.fixed.vertical - } + s + awful.widget.taglist.filter.selected + {} + {:font (.. beautiful.font " Bold 10")} + nil + (wibox.layout.fixed.vertical) )) tag-list diff --git a/widget/task-list.fnl b/widget/task-list.fnl index 53c6dab..fef9aca 100644 --- a/widget/task-list.fnl +++ b/widget/task-list.fnl @@ -9,10 +9,11 @@ (fn task-list [s] (awful.widget.tasklist - {:screen s - :filter awful.widget.tasklist.filter.currenttags - :style {:disable_task_name true} - })) + s + awful.widget.tasklist.filter.currenttags + {} + {:disable_task_name true} + )) task-list