mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2026-03-23 05:55:12 +00:00
update floating window
This commit is contained in:
parent
13cdb9a290
commit
60aa37fc76
4
rc.lua
4
rc.lua
|
|
@ -805,7 +805,9 @@ client.connect_signal("manage", function(c)
|
||||||
c.floating = true
|
c.floating = true
|
||||||
end
|
end
|
||||||
if c.floating then
|
if c.floating then
|
||||||
awful.placement.centered(c)
|
-- awful.placement.centered(c)
|
||||||
|
awful.placement.bottom_right(c)
|
||||||
|
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,13 +19,15 @@ theme.confdir = os.getenv "HOME" .. "/.config/awesome/themes/multicolor"
|
||||||
theme.wallpaper = os.getenv "MY_WALLPAPER" or theme.confdir .. "/wall.png"
|
theme.wallpaper = os.getenv "MY_WALLPAPER" or theme.confdir .. "/wall.png"
|
||||||
theme.font = "Monospace 11"
|
theme.font = "Monospace 11"
|
||||||
|
|
||||||
|
local focus_fg = "#59e269"
|
||||||
|
|
||||||
-- Menu
|
-- Menu
|
||||||
theme.menu_bg_normal = "#000000AA"
|
theme.menu_bg_normal = "#000000AA"
|
||||||
theme.menu_bg_focus = "#000000AA"
|
theme.menu_bg_focus = "#000000AA"
|
||||||
theme.menu_border_width = 0
|
theme.menu_border_width = 0
|
||||||
theme.menu_width = dpi(130)
|
theme.menu_width = dpi(130)
|
||||||
theme.menu_fg_normal = "#aaaaaa"
|
theme.menu_fg_normal = "#aaaaaa"
|
||||||
theme.menu_fg_focus = "#59e269"
|
theme.menu_fg_focus = focus_fg
|
||||||
theme.menu_bg_normal = "#050505dd"
|
theme.menu_bg_normal = "#050505dd"
|
||||||
theme.menu_bg_focus = "#050505dd"
|
theme.menu_bg_focus = "#050505dd"
|
||||||
|
|
||||||
|
|
@ -38,7 +40,7 @@ theme.bg_minimize = "#444444"
|
||||||
|
|
||||||
-- Foreground
|
-- Foreground
|
||||||
theme.fg_normal = "#ffffff"
|
theme.fg_normal = "#ffffff"
|
||||||
theme.fg_focus = "#59e269"
|
theme.fg_focus = focus_fg
|
||||||
theme.fg_urgent = "#ffffff"
|
theme.fg_urgent = "#ffffff"
|
||||||
theme.fg_minimize = "#ffffff"
|
theme.fg_minimize = "#ffffff"
|
||||||
|
|
||||||
|
|
@ -51,8 +53,8 @@ theme.gap_single_client = true
|
||||||
-- Window Borders
|
-- Window Borders
|
||||||
theme.border_width = dpi(2)
|
theme.border_width = dpi(2)
|
||||||
theme.border_normal = "#1c2022"
|
theme.border_normal = "#1c2022"
|
||||||
theme.border_focus = "#59e269"
|
theme.border_focus = focus_fg
|
||||||
theme.border_marked = "#3ca4d8"
|
theme.border_marked = "#d166ff"
|
||||||
|
|
||||||
-- Taglist
|
-- Taglist
|
||||||
theme.taglist_bg_empty = theme.bg_normal
|
theme.taglist_bg_empty = theme.bg_normal
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue