From 8d3d4e797e64ac4e9c75bb82bd8ee483d5dd420c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 26 Feb 2026 10:18:38 +0100 Subject: [PATCH] Make it clear that we're starting a new session --- config/hypr/bindings.conf | 2 +- migrations/1771847961.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/bindings.conf b/config/hypr/bindings.conf index 34e4a786..985832fc 100644 --- a/config/hypr/bindings.conf +++ b/config/hypr/bindings.conf @@ -1,6 +1,6 @@ # Application bindings bindd = SUPER, RETURN, Terminal, exec, uwsm-app -- xdg-terminal-exec --dir="$(omarchy-cmd-terminal-cwd)" -bindd = SUPER ALT, RETURN, Tmux, exec, uwsm-app -- xdg-terminal-exec --dir="$(omarchy-cmd-terminal-cwd)" tmux +bindd = SUPER ALT, RETURN, Tmux, exec, uwsm-app -- xdg-terminal-exec --dir="$(omarchy-cmd-terminal-cwd)" tmux new bindd = SUPER SHIFT, F, File manager, exec, uwsm-app -- nautilus --new-window bindd = SUPER ALT SHIFT, F, File manager (cwd), exec, uwsm-app -- nautilus --new-window "$(omarchy-cmd-terminal-cwd)" bindd = SUPER SHIFT, B, Browser, exec, omarchy-launch-browser diff --git a/migrations/1771847961.sh b/migrations/1771847961.sh index 2d54c8ae..99808cba 100644 --- a/migrations/1771847961.sh +++ b/migrations/1771847961.sh @@ -3,5 +3,5 @@ echo "Add Tmux binding (Super+Alt+Return) to hypr/bindings.conf" bindings_file="$HOME/.config/hypr/bindings.conf" if [[ -f $bindings_file ]] && ! grep -qE '^bindd?\s*=\s*SUPER\s+ALT\s*,\s*RETURN' "$bindings_file"; then - sed -i '1a bindd = SUPER ALT, RETURN, Tmux, exec, uwsm-app -- xdg-terminal-exec --dir="$(omarchy-cmd-terminal-cwd)" tmux' "$bindings_file" + sed -i '1a bindd = SUPER ALT, RETURN, Tmux, exec, uwsm-app -- xdg-terminal-exec --dir="$(omarchy-cmd-terminal-cwd)" tmux new' "$bindings_file" fi