diff options
author | jdlugosz963 <jdlugosz963@gmail.com> | 2022-06-23 00:46:37 +0200 |
---|---|---|
committer | jdlugosz963 <jdlugosz963@gmail.com> | 2022-06-23 00:46:37 +0200 |
commit | db0fc8706ab3aa03c18871c76f11f5e3beadeb63 (patch) | |
tree | e135497b90d5427ad2444b019f5d43fc60e1f5d2 /.config | |
parent | 2442df784cd3ead171f1fd237070609b45b9e0ee (diff) | |
download | dotfiles-db0fc8706ab3aa03c18871c76f11f5e3beadeb63.tar.gz dotfiles-db0fc8706ab3aa03c18871c76f11f5e3beadeb63.zip |
add some changes to qtile config
Diffstat (limited to '.config')
-rw-r--r-- | .config/qtile/config.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 93ca86f..f357067 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py | |||
@@ -71,21 +71,24 @@ keys = [ | |||
71 | desc="Spawn a command using a prompt widget"), | 71 | desc="Spawn a command using a prompt widget"), |
72 | 72 | ||
73 | Key([mod], "p", lazy.run_extension(extension.DmenuRun( | 73 | Key([mod], "p", lazy.run_extension(extension.DmenuRun( |
74 | dmenu_prompt="$", | 74 | dmenu_prompt="Run", |
75 | dmenu_bottom=False, | 75 | dmenu_bottom=False, |
76 | dmenu_lines=56, | 76 | dmenu_lines=56, |
77 | dmenu_ignorecase=True, | ||
77 | background=BAR, | 78 | background=BAR, |
78 | foreground=CYAN, | 79 | foreground=CYAN, |
79 | ))), | 80 | ))), |
80 | 81 | ||
81 | Key([mod, "mod1"], "q", lazy.spawn("qutebrowser"), desc="Spawn qutebrowser"), | 82 | Key([mod, "mod1"], "q", lazy.spawn("qutebrowser"), desc="Spawn qutebrowser"), |
82 | Key([mod, "mod1"], "b", lazy.spawn("brave"), desc="Spawn brave"), | 83 | Key([mod, "mod1"], "b", lazy.spawn("brave"), desc="Spawn brave"), |
83 | Key([mod, "mod1"], "f", lazy.spawn("firefox-bin"), desc="Spawn firefox"), | 84 | Key([mod, "mod1"], "f", lazy.spawn("firefox"), desc="Spawn firefox"), |
84 | Key([mod, "mod1"], "e", lazy.spawn("emacs"), desc="Spawn emacs"), | 85 | Key([mod, "mod1"], "e", lazy.spawn("emacs"), desc="Spawn emacs"), |
85 | Key([mod, "mod1"], "s", lazy.spawn("alacritty -e spt"), desc="Spawn spt (spotify clent)"), | 86 | Key([mod, "mod1"], "s", lazy.spawn("alacritty -e spt"), desc="Spawn spt (spotify clent)"), |
87 | Key([mod, "mod1"], "c", lazy.spawn("alacritty -e cmus"), desc="Spawn cmus (music player)"), | ||
86 | Key([mod, "mod1"], "g", lazy.spawn("alacritty -e /home/jakub/.config/qtile/mdt_shell"), desc="connect to google coral device"), | 88 | Key([mod, "mod1"], "g", lazy.spawn("alacritty -e /home/jakub/.config/qtile/mdt_shell"), desc="connect to google coral device"), |
87 | Key([mod, "mod1"], "l", lazy.spawn("slock"), desc="lock desktop"), | 89 | Key([mod, "mod1"], "l", lazy.spawn("slock"), desc="lock desktop"), |
88 | Key([mod, "mod1"], "r", lazy.spawn("alacritty -e ranger"), desc="Spawn ranger (file manager)"), | 90 | Key([mod, "mod1"], "r", lazy.spawn("alacritty -e ranger"), desc="Spawn ranger (file manager)"), |
91 | Key([mod, "mod1"], "p", lazy.spawn("alacritty -e pulsemixer"), desc="Spawn pulsemixer"), | ||
89 | ] | 92 | ] |
90 | groups_names = [ | 93 | groups_names = [ |
91 | "dev", | 94 | "dev", |