2019-03-08 20:02:27 +01:00
|
|
|
local awful = require("awful")
|
|
|
|
local wibox = require("wibox")
|
|
|
|
local beautiful = require("beautiful")
|
|
|
|
require("_date")
|
|
|
|
|
|
|
|
-- Create the same number of tags as the default config
|
|
|
|
awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9" }, screen[1], awful.layout.layouts[1])
|
|
|
|
local mykeyboardlayout = awful.widget.keyboardlayout()
|
|
|
|
local mytextclock = wibox.widget.textclock()
|
|
|
|
local mylayoutbox = awful.widget.layoutbox(screen[1])
|
|
|
|
local mytaglist = awful.widget.taglist(screen[1], awful.widget.taglist.filter.all, {})
|
|
|
|
local mytasklist = awful.widget.tasklist(screen[1], awful.widget.tasklist.filter.currenttags, {})
|
2020-08-23 10:46:05 +02:00
|
|
|
local mypromptbox = wibox.widget.textbox("")
|
2019-03-08 20:02:27 +01:00
|
|
|
|
|
|
|
local wb = awful.wibar { position = "top" }
|
|
|
|
wb:setup {
|
|
|
|
layout = wibox.layout.align.horizontal,
|
|
|
|
{
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
{
|
|
|
|
image = beautiful.awesome_icon,
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
},
|
|
|
|
mytaglist,
|
2020-08-23 10:46:05 +02:00
|
|
|
mypromptbox,
|
2019-03-08 20:02:27 +01:00
|
|
|
},
|
|
|
|
mytasklist,
|
|
|
|
{
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
mykeyboardlayout,
|
2020-08-23 10:46:05 +02:00
|
|
|
{
|
|
|
|
image = beautiful.awesome_icon,
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image = beautiful.awesome_icon,
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image = beautiful.awesome_icon,
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
},
|
2019-03-08 20:02:27 +01:00
|
|
|
mytextclock,
|
|
|
|
mylayoutbox,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
client.connect_signal("request::titlebars", function(c)
|
|
|
|
local top_titlebar = awful.titlebar(c, {
|
|
|
|
height = 20,
|
|
|
|
bg_normal = beautiful.bg_normal,
|
|
|
|
})
|
|
|
|
|
|
|
|
top_titlebar : setup {
|
|
|
|
{ -- Left
|
|
|
|
awful.titlebar.widget.iconwidget(c),
|
|
|
|
layout = wibox.layout.fixed.horizontal
|
|
|
|
},
|
|
|
|
{ -- Middle
|
|
|
|
{ -- Title
|
|
|
|
align = "center",
|
|
|
|
widget = awful.titlebar.widget.titlewidget(c)
|
|
|
|
},
|
|
|
|
layout = wibox.layout.flex.horizontal
|
|
|
|
},
|
|
|
|
{ -- Right
|
|
|
|
awful.titlebar.widget.floatingbutton (c),
|
|
|
|
awful.titlebar.widget.maximizedbutton(c),
|
|
|
|
awful.titlebar.widget.stickybutton (c),
|
|
|
|
awful.titlebar.widget.ontopbutton (c),
|
|
|
|
awful.titlebar.widget.closebutton (c),
|
|
|
|
layout = wibox.layout.fixed.horizontal()
|
|
|
|
},
|
|
|
|
layout = wibox.layout.align.horizontal
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
|
|
|
|
require("gears.timer").run_delayed_calls_now()
|
|
|
|
|
|
|
|
return {
|
|
|
|
mykeyboardlayout = mykeyboardlayout,
|
|
|
|
mytextclock = mytextclock ,
|
|
|
|
mylayoutbox = mylayoutbox ,
|
|
|
|
mytaglist = mytaglist ,
|
|
|
|
mytasklist = mytasklist ,
|
2020-08-23 10:46:05 +02:00
|
|
|
mywibox = wb ,
|
|
|
|
mypromptbox = mypromptbox ,
|
2019-03-08 20:02:27 +01:00
|
|
|
}
|