Changed window compositor.

Added window margins.
This commit is contained in:
paul-loedige
2021-07-16 20:01:23 +02:00
parent fce57202d3
commit 7e389eedd4
6 changed files with 524 additions and 4 deletions
+5 -1
View File
@@ -34,7 +34,9 @@ def powerline_arrow(direction, color1, color2,size):
#region Left_widgets
def Left_widgets(size,fontsize,prompt=False):
return [
widget.CurrentLayoutIcon(),
widget.CurrentLayoutIcon(
scale = 0.9,
),
*powerline_arrow('r',base_color,blue_color,size),
widget.TextBox(
text='',
@@ -58,7 +60,9 @@ def Left_widgets(size,fontsize,prompt=False):
urgent_alert_method='block',
urgent_border = red_color,
),
widget.Spacer(),
widget.WindowName(fontsize=fontsize-2),
widget.Spacer(),
]
#endregion