You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
534 B
25 lines
534 B
local awful = require('awful') |
|
local wibox = require('wibox') |
|
local gears = require('gears') |
|
local timer = require("gears.timer") |
|
local beautiful = require('beautiful') |
|
local dpi = beautiful.xresources.apply_dpi |
|
|
|
screen.connect_signal("appdrawer::open", function(s) |
|
|
|
local drawer = wibox({ |
|
position = "left", |
|
ontop = true, |
|
stretch = false, |
|
width = dpi(64), |
|
height = s.workarea.height, |
|
visible = true, |
|
y = 48 |
|
}) |
|
|
|
drawer:setup { |
|
expand = "none", |
|
layout = wibox.layout.align.vertical, |
|
} |
|
|
|
end)
|
|
|