working opacity alacritty

This commit is contained in:
godot 2024-04-13 12:19:49 +02:00
parent 95f328e2f7
commit 30cf92b879

View File

@ -43,12 +43,14 @@ keys = [
lazy.layout.toggle_split(), lazy.layout.toggle_split(),
desc="Toggle between split and unsplit sides of stack", 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"), Key([mod], "w", lazy.spawn("firefox"), desc="Launch firefox"),
# Toggle between different layouts as defined below # Toggle between different layouts as defined below
Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"), Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),
Key([mod], "q", lazy.window.kill(), desc="Kill focused window"), Key([mod], "q", lazy.window.kill(), desc="Kill focused window"),
Key([mod, "control"], "r", lazy.reload_config(), desc="Reload the config"), Key([mod, "control"], "r", lazy.reload_config(), desc="Reload the config"),
Key([mod, "control"], "q", lazy.shutdown(), desc="Shutdown 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 drun"), desc="Spawn rofi drun"),
] ]