diff options
Diffstat (limited to '.config')
-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()), |