diff options
Diffstat (limited to 'awesome/rc.lua')
-rwxr-xr-x | awesome/rc.lua | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index ec001794..a7d518ec 100755 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -61,17 +61,17 @@ modkey = "Mod4" -- Table of layouts to cover with awful.layout.inc, order matters. awful.layout.layouts = { - awful.layout.suit.tile.left, awful.layout.suit.spiral.dwindle, awful.layout.suit.fair, - awful.layout.suit.tile, - awful.layout.suit.fair.horizontal, awful.layout.suit.magnifier, - awful.layout.suit.max, - awful.layout.suit.max.fullscreen, - awful.layout.suit.corner.nw, - awful.layout.suit.tile.bottom, awful.layout.suit.floating, + awful.layout.suit.max, + awful.layout.suit.fair.horizontal, + awful.layout.suit.tile.left, +-- awful.layout.suit.max.fullscreen, +-- awful.layout.suit.corner.nw, +-- awful.layout.suit.tile, +-- awful.layout.suit.tile.bottom, -- awful.layout.suit.tile.top, -- awful.layout.suit.spiral, -- awful.layout.suit.corner.ne, @@ -325,7 +325,7 @@ globalkeys = gears.table.join( awful.key({ modkey, "Shift" }, "m", function () awful.spawn.with_shell("betterlockscreen -s ") end, {description = "lock screen", group = "custom"}), - awful.key({ "Mod1", }, "s", function () awful.spawn.with_shell("scrot ~/Media/Screenshots/%Y-%d-%m-%T-screenshot.png") end, + awful.key({ "Mod1", }, "s", function () awful.spawn.with_shell("scrot /zt/Screenshots/%Y-%d-%m-%T-screenshot.png") end, {description = "take a screenshot", group = "custom"}), @@ -511,6 +511,7 @@ awful.rules.rules = { border_color = beautiful.border_normal, focus = awful.client.focus.filter, raise = true, + titlebars_enabled = true, keys = clientkeys, buttons = clientbuttons, screen = awful.screen.preferred, @@ -547,7 +548,7 @@ awful.rules.rules = { "ConfigManager", -- Thunderbird's about:config. "pop-up", -- e.g. Google Chrome's (detached) Developer Tools. } - }, properties = { floating = true, + }, properties = { floating = false, above = true, titlebars_enabled = true, }}, @@ -630,4 +631,4 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n -- autostarts awful.spawn.with_shell("nitrogen --restore") awful.spawn.with_shell("picom") ---awful.spawn.with_shell("firefox") +awful.spawn.with_shell("firefox") |