diff options
author | ThanosApollo <[email protected]> | 2022-08-26 01:16:31 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-08-26 01:16:31 +0300 |
commit | 1d7a291fddc5d9c58485cece930fa38807fcd6e7 (patch) | |
tree | e1ca3f32daa8712ca1cfa5acd0ce68e1c455424b | |
parent | 3ff03aa274195da591e50adb34172a5bdea4faa7 (diff) |
Update layout shortcut
-rw-r--r-- | .config/qtile/config.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index eb5853f..1e50e8c 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -201,7 +201,7 @@ keys = [ ), ### Change languages Key([mod], "F1", - lazy.spawn("setxkbmap us"), + lazy.spawn("setxkbmap us -option caps:swapescape"), desc= "change to US layout" ), Key([mod],"F2", @@ -212,7 +212,6 @@ keys = [ ] - def window_to_previous_screen(qtile, switch_group=False, switch_screen=False): i = qtile.screens.index(qtile.current_screen) if i != 0: @@ -385,14 +384,14 @@ def init_widgets_list(): foreground = colors[2], background = colors[1] ), - widget.Image( - filename='~/Pictures/arch/qwe_download.png', - scale = "True", - ), + # widget.Image( + # filename='~/Pictures/arch/qwe_download.png', + # scale = "True", + # ), widget.TextBox( font="FontAwesome", text= '|' + str(subprocess.check_output("uname -r", shell=True).strip()).replace('b','') + '|', - foreground=colors[10], + foreground=colors[5], background=colors[1], padding = 0, fontsize=14 |