diff --git a/keys.py b/keys.py index 7a9f3a2..b538849 100644 --- a/keys.py +++ b/keys.py @@ -43,12 +43,14 @@ keys = [ lazy.layout.toggle_split(), desc="Toggle between split and unsplit sides of stack", ), - Key([mod], "Return", lazy.spawn('alacritty -o "window.opacity=0.9"'), desc="Launch terminal"), + Key([mod], "Return", lazy.spawn('alacritty'), desc="Launch terminal"), + Key([mod], "s", lazy.spawn('rofi -show ssh'), desc="Spawn rofi SSH"), + Key([mod], "Return", lazy.spawn('alacritty'), desc="Launch terminal"), Key([mod], "w", lazy.spawn("firefox"), desc="Launch firefox"), # Toggle between different layouts as defined below Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"), Key([mod], "q", lazy.window.kill(), desc="Kill focused window"), Key([mod, "control"], "r", lazy.reload_config(), desc="Reload the config"), 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 drun"), desc="Spawn rofi drun"), ]