2022-12-05 01:49:49 +00:00
|
|
|
--- {{{ Imports
|
|
|
|
local wibox = require("wibox")
|
|
|
|
local gears = require("gears")
|
|
|
|
local awful = require("awful")
|
|
|
|
local theme = require("ui.theme")
|
|
|
|
-- Textclock widget
|
2022-12-08 03:13:08 +00:00
|
|
|
local mytextclock = wibox.widget.textclock()
|
2022-12-06 05:40:36 +00:00
|
|
|
screen.connect_signal("request::desktop_decoration", function(s)
|
2022-12-05 01:49:49 +00:00
|
|
|
-- Tag names for each screen
|
|
|
|
awful.tag(
|
|
|
|
{
|
2023-02-20 00:41:01 +00:00
|
|
|
"", -- EDITOR
|
|
|
|
"", -- FILE MANAGER
|
|
|
|
"", -- WEB BROWSER
|
|
|
|
"", -- CHAT
|
|
|
|
"", -- MUSIC
|
|
|
|
"", -- VIDEO
|
|
|
|
"", -- IMAGE/EDIT TOOLS
|
|
|
|
"", -- OFFICE
|
|
|
|
"" -- GAMES
|
2022-12-05 01:49:49 +00:00
|
|
|
},
|
|
|
|
s,
|
|
|
|
awful.layout.layouts[1]
|
|
|
|
)
|
|
|
|
|
|
|
|
-- Layoutbox widget
|
2022-12-06 05:40:36 +00:00
|
|
|
s.mylayoutbox = {
|
|
|
|
widget = wibox.container.background,
|
|
|
|
bg = theme.bg_normal,
|
|
|
|
shape = gears.shape.circle,
|
|
|
|
awful.widget.layoutbox {
|
|
|
|
screen = s,
|
|
|
|
buttons = {
|
|
|
|
awful.button(
|
|
|
|
{ },
|
|
|
|
1,
|
|
|
|
function ()
|
|
|
|
awful.layout.inc(1)
|
|
|
|
end
|
|
|
|
),
|
|
|
|
awful.button(
|
|
|
|
{ },
|
|
|
|
3,
|
|
|
|
function ()
|
|
|
|
awful.layout.inc(-1)
|
|
|
|
end
|
|
|
|
),
|
|
|
|
awful.button(
|
|
|
|
{ },
|
|
|
|
4,
|
|
|
|
function ()
|
|
|
|
awful.layout.inc(-1)
|
|
|
|
end
|
|
|
|
),
|
|
|
|
awful.button(
|
|
|
|
{ },
|
|
|
|
5,
|
|
|
|
function ()
|
|
|
|
awful.layout.inc(1)
|
|
|
|
end
|
|
|
|
),
|
|
|
|
}
|
2022-12-05 01:49:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-06 05:40:36 +00:00
|
|
|
-- Taglist widget
|
|
|
|
s.mytaglist = {
|
|
|
|
widget = wibox.container.background,
|
|
|
|
bg = theme.taglist_bg,
|
|
|
|
shape = gears.shape.rounded_rect,
|
|
|
|
awful.widget.taglist {
|
|
|
|
screen = s,
|
|
|
|
filter = awful.widget.taglist.filter.all,
|
|
|
|
buttons = {
|
|
|
|
awful.button(
|
|
|
|
{ },
|
|
|
|
1,
|
|
|
|
function(t)
|
|
|
|
t:view_only()
|
|
|
|
end
|
|
|
|
),
|
|
|
|
awful.button(
|
|
|
|
{ modkey },
|
|
|
|
1,
|
|
|
|
function(t)
|
|
|
|
if client.focus then
|
|
|
|
client.focus:move_to_tag(t)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
),
|
|
|
|
awful.button(
|
|
|
|
{ },
|
|
|
|
3,
|
|
|
|
awful.tag.viewtoggle
|
|
|
|
),
|
|
|
|
awful.button(
|
|
|
|
{ modkey },
|
|
|
|
3,
|
|
|
|
function(t)
|
|
|
|
if client.focus then
|
|
|
|
client.focus:toggle_tag(t)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
),
|
|
|
|
awful.button(
|
|
|
|
{ },
|
|
|
|
4,
|
|
|
|
function(t)
|
|
|
|
awful.tag.viewprev(t.screen)
|
|
|
|
end
|
|
|
|
),
|
|
|
|
awful.button(
|
|
|
|
{ },
|
|
|
|
5,
|
|
|
|
function(t)
|
|
|
|
awful.tag.viewnext(t.screen)
|
|
|
|
end
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Prepare custom widgets
|
2022-12-05 01:49:49 +00:00
|
|
|
-- Volume widget
|
|
|
|
s.volume =
|
|
|
|
awful.widget.watch(
|
2022-12-06 05:40:36 +00:00
|
|
|
".config/awesome/ui/widgets/volume",
|
2022-12-05 01:49:49 +00:00
|
|
|
1 -- Update time in seconds
|
|
|
|
)
|
|
|
|
-- Battery widget
|
|
|
|
s.battery =
|
|
|
|
awful.widget.watch(
|
2022-12-06 05:40:36 +00:00
|
|
|
".config/awesome/ui/widgets/battery",
|
|
|
|
10 -- update time in seconds
|
2022-12-05 01:49:49 +00:00
|
|
|
)
|
|
|
|
-- Wifi widget
|
|
|
|
s.wifi =
|
|
|
|
awful.widget.watch(
|
2022-12-06 05:40:36 +00:00
|
|
|
".config/awesome/ui/widgets/wifi",
|
2022-12-05 01:49:49 +00:00
|
|
|
10 -- Update time in seconds
|
|
|
|
)
|
|
|
|
-- Brightness widget
|
|
|
|
s.brightness =
|
|
|
|
awful.widget.watch(
|
2022-12-06 05:40:36 +00:00
|
|
|
".config/awesome/ui/widgets/brightness",
|
2022-12-05 01:49:49 +00:00
|
|
|
1 -- Update time in seconds
|
|
|
|
)
|
|
|
|
-- Keyboard layout widget
|
|
|
|
s.layout =
|
|
|
|
awful.widget.watch(
|
2022-12-06 05:40:36 +00:00
|
|
|
".config/awesome/ui/widgets/layout",
|
2022-12-05 01:49:49 +00:00
|
|
|
1 -- Update time in seconds
|
|
|
|
)
|
|
|
|
|
2022-12-06 05:40:36 +00:00
|
|
|
-- Prepare custom widgets container
|
|
|
|
local custom_widget_container = {
|
|
|
|
-- Keyboard layout widget
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_one),
|
|
|
|
wibox.container.background(s.layout, theme.bar_bg_one),
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_one),
|
|
|
|
-- Volume widget
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_two),
|
|
|
|
wibox.container.background(s.volume, theme.bar_bg_two),
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_two),
|
|
|
|
-- Brightness widget
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_tre),
|
|
|
|
wibox.container.background(s.brightness, theme.bar_bg_tre),
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_tre),
|
|
|
|
-- Battery widget
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_for),
|
|
|
|
wibox.container.background(s.battery, theme.bar_bg_for),
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_for),
|
|
|
|
-- Wifi widget
|
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bar_bg_fiv),
|
|
|
|
wibox.container.background(s.wifi, theme.bar_bg_fiv),
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
2022-12-05 01:49:49 +00:00
|
|
|
}
|
|
|
|
|
2022-12-06 05:40:36 +00:00
|
|
|
-- Main right widget container with pill shape
|
|
|
|
local right_widgets = {
|
|
|
|
custom_widget_container,
|
|
|
|
widget = wibox.container.background,
|
|
|
|
shape = gears.shape.rounded_rect,
|
|
|
|
}
|
2022-12-05 01:49:49 +00:00
|
|
|
|
2022-12-06 05:40:36 +00:00
|
|
|
-- Wibar
|
2022-12-05 01:49:49 +00:00
|
|
|
s.mywibox = awful.wibar {
|
|
|
|
position = "top",
|
2022-12-06 05:40:36 +00:00
|
|
|
height = (30),
|
|
|
|
border_width = (10),
|
|
|
|
border_color = theme.bg_normal,
|
2022-12-05 01:49:49 +00:00
|
|
|
screen = s,
|
|
|
|
widget = {
|
|
|
|
layout = wibox.layout.stack,
|
|
|
|
{
|
|
|
|
layout = wibox.layout.align.horizontal,
|
|
|
|
{
|
|
|
|
-- [[ Left widgets ]]
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
-- Layoubox widget
|
|
|
|
s.mylayoutbox,
|
2022-12-06 05:40:36 +00:00
|
|
|
wibox.container.background(wibox.widget.textbox(" "), theme.bg_normal),
|
2022-12-05 01:49:49 +00:00
|
|
|
-- Taglist widget
|
|
|
|
s.mytaglist,
|
|
|
|
},
|
|
|
|
nil,
|
|
|
|
{
|
|
|
|
-- [[ Right widgets ]]
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
2022-12-06 05:40:36 +00:00
|
|
|
right_widgets
|
2022-12-05 01:49:49 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
-- [[ Center widgets ]]
|
|
|
|
-- Clock widget
|
2022-12-06 05:40:36 +00:00
|
|
|
wibox.container.background(mytextclock, theme.bar_clock, gears.shape.rounded_rect),
|
2022-12-05 01:49:49 +00:00
|
|
|
valign = "center",
|
|
|
|
halign = "center",
|
|
|
|
layout = wibox.container.place,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
)
|