From 605ed7a4329f508ff38e12376f595834bd67223f Mon Sep 17 00:00:00 2001 From: vincent Date: Sun, 20 Oct 2019 18:01:55 +0200 Subject: [PATCH] correct top process place --- awesome/.config/awesome/themes/colored/theme.lua | 2 +- awesome/.config/awesome/themes/default/theme.lua | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/awesome/.config/awesome/themes/colored/theme.lua b/awesome/.config/awesome/themes/colored/theme.lua index b8deb28..bf4c226 100644 --- a/awesome/.config/awesome/themes/colored/theme.lua +++ b/awesome/.config/awesome/themes/colored/theme.lua @@ -174,7 +174,7 @@ function theme:update() ------------------------------------------------------------ self.float.top.set_position = function(wibox) local geometry = { x = mouse.screen.workarea.x + mouse.screen.workarea.width, - y = mouse.screen.workarea.y + mouse.screen.workarea.height } + y = mouse.screen.workarea.y } wibox:geometry(geometry) end diff --git a/awesome/.config/awesome/themes/default/theme.lua b/awesome/.config/awesome/themes/default/theme.lua index c56a605..f99ef51 100644 --- a/awesome/.config/awesome/themes/default/theme.lua +++ b/awesome/.config/awesome/themes/default/theme.lua @@ -44,15 +44,6 @@ theme.widget.wrapper = { tasklist = { 4, 0, 0, 0 }, -- centering tasklist widget } ---icon - -theme.cpu_icon = icon_dir .. "cpu.png" -theme.net_up = icon_dir .. "net_up.png" -theme.net_down = icon_dir .. "net_down.png" -theme.spr_right = icon_dir .. "spr_right.png" -theme.mpd_icon = icon_dir .. "audio.svg" -theme.ram_icon = icon_dir .. "ram.png" - return theme