config/qtile: add rofi keys
This commit is contained in:
parent
4c6f9ab85d
commit
731942bbc9
1 changed files with 12 additions and 0 deletions
|
@ -248,6 +248,8 @@ keys = [
|
||||||
lazy.spawn("xsecurelock"),
|
lazy.spawn("xsecurelock"),
|
||||||
desc="Lock Screen",
|
desc="Lock Screen",
|
||||||
),
|
),
|
||||||
|
|
||||||
|
# Keys for spawning commands or applications
|
||||||
Key(
|
Key(
|
||||||
[Keys.SUPER], "r",
|
[Keys.SUPER], "r",
|
||||||
lazy.spawncmd(),
|
lazy.spawncmd(),
|
||||||
|
@ -258,6 +260,16 @@ keys = [
|
||||||
lazy.spawncmd(prompt="shell", command=Apps.terminal_command("%s", args=("--hold",))),
|
lazy.spawncmd(prompt="shell", command=Apps.terminal_command("%s", args=("--hold",))),
|
||||||
desc="Spawn a command in a shell using a prompt widget",
|
desc="Spawn a command in a shell using a prompt widget",
|
||||||
),
|
),
|
||||||
|
Key(
|
||||||
|
[Keys.SUPER, Keys.CONTROL], "r",
|
||||||
|
lazy.spawn("rofi -show drun"),
|
||||||
|
desc="Spawn a rofi menu to select a desktop application to open",
|
||||||
|
),
|
||||||
|
Key(
|
||||||
|
[Keys.SUPER, Keys.CONTROL, Keys.SHIFT], "r",
|
||||||
|
lazy.spawn("rofi -show run"),
|
||||||
|
desc="Spawn something in the path",
|
||||||
|
),
|
||||||
|
|
||||||
# Power management
|
# Power management
|
||||||
KeyChord(
|
KeyChord(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue