From 950fc54fb43f1d913387bfb6716d2e3d32a65f4b Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Sat, 19 Apr 2025 16:26:46 +1000 Subject: [PATCH] feat: Add keybind to open terminal without zellij --- .alacritty-nozellij.toml | 27 +++++++++++++++++++++++++++ .config/hypr/hyprland.conf | 5 ++++- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 .alacritty-nozellij.toml diff --git a/.alacritty-nozellij.toml b/.alacritty-nozellij.toml new file mode 100644 index 0000000..7f771e5 --- /dev/null +++ b/.alacritty-nozellij.toml @@ -0,0 +1,27 @@ +[env] +TERM = "xterm-256color" +ZELLIJ = "0" +shell = "zsh" + +[window] +decorations = "none" +startup_mode = "Windowed" +opacity = 0.8 +blur = true + +# padding = { x = 10, y = 10 } + +[font] +normal = { family = "Fira Code", style = "Regular" } +size = 8 + + +[selection] +save_to_clipboard = true + +[mouse] +bindings = [{ mouse = "Right", action = "Paste" }] + +[general] +import = ["~/.config/alacritty/themes/themes/hyper.toml"] + diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 14c16dd..8d3314b 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -282,4 +282,7 @@ bind = , mouse_right, exec, ydotool key 56:1 106:1 106:0 56:0 bind = SUPER CTRL, P, exec, ~/.config/hypr/scripts/gromit.py # Emoji -bind = $mainMod, PERIOD, exec, bemoji \ No newline at end of file +bind = $mainMod, PERIOD, exec, bemoji + +# Custom terminal +bind = $mainMod, T, exec, alacritty --config-file ~/dotfiles/.alacritty-nozellij.toml \ No newline at end of file