diff options
author | Thanos Apollo <[email protected]> | 2024-04-16 17:16:19 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-04-16 17:16:19 +0300 |
commit | 83db5a93d8b17621c41522f098040c46866ecceb (patch) | |
tree | 1b4b4d020bd76614b8d18caf4f191b0bb0d7b55d /.config/qtile | |
parent | 2fd1ae9eaecf314b10c06bebbcba02c5dfd2078f (diff) |
qtile: Update keyboard widget styling
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/config.py | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 4f35ccf..8d09e03 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -96,10 +96,10 @@ def init_widgets_list(): widget.Spacer(length=10,), widget.KeyboardLayout( configured_keyboards = ['us','gr','bg phonetic'], - fontsize = 12, - display_map = {'us':'US', 'gr':'EL', 'bg phonetic':'BG'}, - padding = 15, - fmt = "[{}]" + fontsize=12, + display_map={'us':'US', 'gr':'EL', 'bg phonetic':'BG'}, + padding=15, + fmt="[{}]" ), widget.Image( filename="~/.config/qtile/volume1.png", @@ -208,13 +208,6 @@ keys = [ # Emacs Key([mod], "Return", lazy.spawn("emacsclient -c")), Key([mod], "w", lazy.spawn("emacsclient -e '(thanos/pass-launcher)'")), - # KeyChord([mod], "e", [ - # Key([], "o", lazy.spawn("emacs")), - # Key([], "e", lazy.spawn("emacsclient -c")), - # Key([], "p", lazy.spawn("emacsclient -e '(thanos/pass-launcher)'")), - # Key([], "d", lazy.spawn("emacs --daemon")), - - # ]), # Layout control KeyChord([mod], "l", [ Key([], "n", lazy.next_layout()), |