status tab

This commit is contained in:
Benjamin Kyd
2023-04-30 23:04:04 +01:00
parent 4eeebdaa15
commit 7be1eefc5f
2 changed files with 10 additions and 3 deletions

View File

@@ -7,3 +7,5 @@
[x] Fix the brightness popup
[x] Use white icons in both popups
[x] Fix annoying fullscreen shit
[ ] Fix spotify widget being annoying as shit
[ ] TABS

View File

@@ -54,6 +54,7 @@ nice({
titlebar_font = Ben.fonts.small,
button_size = 14,
mb_resize = nice.MB_MIDDLE,
titlebar_radius = 0,
mb_contextmenu = nice.MB_RIGHT,
titlebar_items = {
left = {},
@@ -66,8 +67,12 @@ nice({
-- fix annoying fullscreen stuff
client.connect_signal("property::fullscreen", function(c)
c.border_width = c.fullscreen and 0 or beautiful.border_width
c:geometry(c.screen.geometry)
awful.titlebar.hide(c)
if c.fullscreen then
c.border_width = c.fullscreen and 0 or beautiful.border_width
c:geometry(c.screen.geometry)
awful.titlebar.hide(c)
else
awful.titlebar.show(c)
end
end)