This commit is contained in:
stephan.raabe 2023-02-13 16:45:44 +01:00
parent 5bff596e3b
commit f0358b1e29
2 changed files with 9 additions and 2 deletions

View File

@ -170,12 +170,13 @@ screens = [
block_highlight_text_color='000000', block_highlight_text_color='000000',
foreground='ffffff', foreground='ffffff',
rounded=False, rounded=False,
this_current_screen_border='ffffff', this_current_screen_border=ColorC,
fontsize=14, fontsize=14,
active='ffffff' active='ffffff'
), ),
widget.TextBox( widget.TextBox(
text='', text='',
foreground=ColorC,
fontsize=14 fontsize=14
), ),
widget.WindowName( widget.WindowName(
@ -190,12 +191,14 @@ screens = [
# ), # ),
widget.TextBox( widget.TextBox(
text='', text='',
foreground=ColorC,
desc='Notes', desc='Notes',
mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e vim /home/raabe/notes.txt')}, mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e vim /home/raabe/notes.txt')},
fontsize=14 fontsize=14
), ),
widget.TextBox( widget.TextBox(
text='|', text='|',
foreground=ColorC,
fontsize=14 fontsize=14
), ),
widget.CPU( widget.CPU(
@ -208,6 +211,7 @@ screens = [
), ),
widget.TextBox( widget.TextBox(
text='|', text='|',
foreground=ColorC,
fontsize=14 fontsize=14
), ),
widget.Volume( widget.Volume(
@ -216,6 +220,7 @@ screens = [
), ),
widget.TextBox( widget.TextBox(
text='|', text='|',
foreground=ColorC,
fontsize=14 fontsize=14
), ),
widget.CheckUpdates( widget.CheckUpdates(
@ -227,6 +232,7 @@ screens = [
), ),
widget.TextBox( widget.TextBox(
text='|', text='|',
foreground=ColorC,
fontsize=14 fontsize=14
), ),
widget.Clock( widget.Clock(
@ -235,6 +241,7 @@ screens = [
), ),
widget.TextBox( widget.TextBox(
text='|', text='|',
foreground=ColorC,
fontsize=14 fontsize=14
), ),
widget.QuickExit( widget.QuickExit(