diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 35a8eab..c42726a 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -221,9 +221,8 @@ end screen.connect_signal("property::geometry", set_wallpaper) awful.screen.connect_for_each_screen(function(s) - s.quake = lain.util.quake({ app = awful.util.terminal , - argname = "-name %s"}) - -- Wallpaper + s.quake = lain.util.quake({ app = awful.util.terminal }) + -- Wallpaper set_wallpaper(s) -- Each screen has its own tag taawful.util.terminable. @@ -333,7 +332,7 @@ globalkeys = gears.table.join( -- Standard program -- Dropdown application - awful.key({ modkey, }, "z", function () awful.screen.focused().quake:toggle() end, + awful.key({ modkey, }, "z", function () awful.screen.focused().quake:toggle() end, {description = "dropdown application", group = "launcher"}), awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, {description = "open a terminal", group = "launcher"}), diff --git a/awesome/.config/awesome/themes/default/theme.lua b/awesome/.config/awesome/themes/default/theme.lua index dee6c75..79d30fa 100644 --- a/awesome/.config/awesome/themes/default/theme.lua +++ b/awesome/.config/awesome/themes/default/theme.lua @@ -30,6 +30,9 @@ theme.border_normal = "#000000" theme.border_focus = "#535d6c" theme.border_marked = "#91231c" + + +theme.wibar_height = dpi(25) -- There are other variable sets -- overriding the default one when -- defined, the sets are: @@ -62,7 +65,7 @@ theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel( -- menu_[bg|fg]_[normal|focus] -- menu_[border_color|border_width] theme.menu_submenu_icon = themes_path.."default/submenu.png" -theme.menu_height = dpi(15) +theme.menu_height = dpi(30) theme.menu_width = dpi(100) -- You can add as many variables as