diff options
author | Mateja <mail@matejamaric.com> | 2021-02-13 11:48:23 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-02-13 11:48:23 +0100 |
commit | 9c8735eb93c1971246c5fdf61ccefb1372cb5cf0 (patch) | |
tree | 33d975224075ca28002313e2b7c49366ea31cd00 | |
parent | 57b555e7ad53af9c7cb3f931292d40410444218f (diff) | |
download | dotfiles-9c8735eb93c1971246c5fdf61ccefb1372cb5cf0.tar.gz dotfiles-9c8735eb93c1971246c5fdf61ccefb1372cb5cf0.zip |
Use Rofi as program launcher.
-rw-r--r-- | .config/qtile/config.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 990fe85..517e7c9 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -91,8 +91,9 @@ keys = [ Key([mod, "control"], "r", lazy.restart(), desc="Restart qtile"), Key([mod, "control"], "q", lazy.shutdown(), desc="Shutdown qtile"), - Key([mod], "r", lazy.spawncmd(), - desc="Spawn a command using a prompt widget"), + + Key([mod], "r", lazy.spawn("rofi -show run"), + desc="Use Rofi to start a new program."), Key([mod], "b", lazy.screen.toggle_group(), desc="Switch to the previously active group."), |