changed some configurations

This commit is contained in:
paul-loedige
2020-11-20 23:22:21 +01:00
parent 396ed858ec
commit 24fd6204ab
3 changed files with 430 additions and 274 deletions
+11 -5
View File
@@ -37,7 +37,7 @@ from libqtile.lazy import lazy
mod = "mod4"
terminal = "termite"
#region key and mouse bindings
#region key_and_mouse_bindings
keys = [
#moving windows around
@@ -109,7 +109,8 @@ layouts = [
]
#endregion
#region widgets and screens
#region widgets_and_screens
widget_defaults = dict(
font='sans',
fontsize=12,
@@ -131,9 +132,11 @@ screens = [
},
name_transform=lambda name: name.upper(),
),
widget.TextBox("default config", name="default"),
widget.TextBox("Press <M-r> to spawn", foreground="#d75f5f"),
widget.Systray(),
widget.CheckUpdates(colour_no_updates='ff0000',
display_format='Updates:{updates}'),
widget.CPU(format='CPU: {load_percent}%',
update_interval=2),
widget.Clock(format='%Y-%m-%d %a %H:%M'),
widget.QuickExit(),
],
@@ -141,8 +144,10 @@ screens = [
),
),
]
#endregions
#endregion
#region miscelanious
dgroups_key_binder = None
dgroups_app_rules = [] # type: List
main = None # WARNING: this is deprecated and will be removed soon
@@ -178,3 +183,4 @@ focus_on_window_activation = "smart"
# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in
# java that happens to be on java's whitelist.
wmname = "LG3D"
#endregion