From ba2284cb65af045ea667e1f7238cec60270f6e49 Mon Sep 17 00:00:00 2001 From: xeals Date: Fri, 18 Jan 2019 10:31:37 +1100 Subject: [PATCH] feat(theme): minor update --- theme/init.fnl | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/theme/init.fnl b/theme/init.fnl index b6e6616..d748cee 100644 --- a/theme/init.fnl +++ b/theme/init.fnl @@ -3,9 +3,10 @@ (let [theme-dir (.. (os.getenv "HOME") "/.config/awesome/theme") icon-dir (.. theme-dir "/icons/")] { - :font "Sarasa Mono J" - :variable_font "Sarasa UI J" - :textclock_font "Sarasa UI J" + :font "Sarasa UI J 10" + :font_mono "Sarasa Mono J Bold 10" + + :wallpaper (.. (os.getenv "HOME") "/pics/wp/sgIcOup.jpg") :sidebar_position :left ;; * :sidebar_width 36 ;; * @@ -16,7 +17,7 @@ :fg_focus "#cfcfcf" :fg_normal "#cfcfcf" - :useless_gap 0 + :useless_gap 2 :border_width 0 :border_focus "#5bb3b4" :border_normal "#1a1e24" @@ -25,7 +26,7 @@ :titlebar_position :left ;; * :titlebar_size 15 ;; * - :titlebar_bg_focus "#926b3e" + :titlebar_bg_focus "#5bb3b4" :titlebar_bg_normal "#252b33" :titlebar_fg_focus "#1a1e24" :titlebar_fg_normal "#cfcfcf" @@ -37,6 +38,6 @@ :taglist_bg_empty (.. "png:" icon-dir "tag-list/unselected.png") :taglist_bg_focus (.. "png:" icon-dir "tag-list/selected.png") - :taglist_bg_occupied (.. "png:" icon-dir "tag-list/occupied.png") + :taglist_bg_occupied (.. "png:" icon-dir "tag-list/occupied-border.png") :taglist_bg_urgent (.. "png:" icon-dir "tag-list/urgent.png") })