[qtile] Run alacritty with fish by default (mod+t)
Just starting alacritty without giving it a command on startup is still possible with mod+shift+t
This commit is contained in:
parent
203fdeddb0
commit
41c65f655e
1 changed files with 2 additions and 1 deletions
|
@ -59,7 +59,8 @@ keys = [
|
|||
# multiple stack panes
|
||||
Key([mod, "shift"], "Return", lazy.layout.toggle_split()),
|
||||
Key([mod], "Return", lazy.spawn("es")), # es = emacsclient
|
||||
Key([mod], "t", lazy.spawn("alacritty")),
|
||||
Key([mod], "t", lazy.spawn("alacritty -e /usr/bin/fish")),
|
||||
Key([mod, "shift"], "t", lazy.spawn("alacritty")),
|
||||
Key([mod], "b", lazy.spawn("nyxt")),
|
||||
|
||||
# Toggle between different layouts as defined below
|
||||
|
|
Loading…
Reference in a new issue