diff options
author | Thanos Apollo <[email protected]> | 2023-11-14 11:06:50 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-11-14 11:06:50 +0200 |
commit | a35b94c58d882700ef862c2d95fc464a65eeffb7 (patch) | |
tree | b4d8d38c2dd6625c12f45273571cc5c042893a3c /.config/qtile | |
parent | cb1e58505af54fdce731c92e71a57cad7ca95b71 (diff) |
qtile: Update keybindings
Remove Duplicates
Add switch option with setxkbmap for greek/us
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/config.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index c6a5460..dfc6b79 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -279,11 +279,8 @@ keys = [ Key([mod, "shift"], "m", lazy.spawn("emacsclient -e '(thanos/pass-launcher)'"), ), - Key([mod], "Tab", - lazy.spawn("rofi -show drun"), - ), Key([mod], "r", - lazy.spawn("rofi -show run"), + lazy.spawn("rofi -show drun"), ), Key([mod], "w", lazy.spawn("rofi -show window"), @@ -370,6 +367,10 @@ keys = [ Key([], "XF86AudioRaiseVolume", lazy.spawn("amixer sset Master 5%+") ), + Key([], "F9", + lazy.spawn("setxkbmap gr -option ctrl:swapcas")), + Key([], "F10", + lazy.spawn("setxkbmap us -option ctrl:swapcaps")), Key([], "F1", lazy.spawn("doas brightnessctl --device='intel_backlight' set 5%-")), Key([], "F2", |