Quellcode durchsuchen

~/.config/awesome/rc.lua: Wider borders, make terminals fill the screen.

Ah, that's *much* better!
Lucas Stadler vor 13 Jahren
Ursprung
Commit
7d1b577228
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3 1
      .config/awesome/rc.lua

+ 3 - 1
.config/awesome/rc.lua

@ -331,7 +331,7 @@ root.keys(globalkeys)
331 331
awful.rules.rules = {
332 332
    -- All clients will match this rule.
333 333
    { rule = { },
334
      properties = { border_width = beautiful.border_width,
334
      properties = { border_width = 3,--beautiful.border_width,
335 335
                     border_color = beautiful.border_normal,
336 336
                     focus = true,
337 337
                     keys = clientkeys,
@ -362,6 +362,8 @@ client.connect_signal("manage", function (c, startup)
362 362
        end
363 363
    end)
364 364
365
    c.size_hints_honor = false
366
365 367
    if not startup then
366 368
        -- Set the windows at the slave,
367 369
        -- i.e. put it at the end of others instead of setting it master.