From 8447588c7f862a23a75356414895d386a29994c3 Mon Sep 17 00:00:00 2001 From: daniel0alves Date: Wed, 1 Apr 2026 22:21:45 +0100 Subject: [PATCH 1/3] adding alias to kitten ssh when using kitty --- dots/.config/fish/config.fish | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dots/.config/fish/config.fish b/dots/.config/fish/config.fish index c565cef0a..55fdccca2 100755 --- a/dots/.config/fish/config.fish +++ b/dots/.config/fish/config.fish @@ -27,5 +27,6 @@ if status is-interactive if test "$TERM" != "linux" alias ls 'eza --icons' end - + if test "$TERM" = "xterm-kitty" + alias ssh 'kitten ssh' end From c1c964aa89832402c74bb59eea3902677c57ba21 Mon Sep 17 00:00:00 2001 From: VietNguyenx <101798660+VietNguyenVN@users.noreply.github.com> Date: Mon, 6 Apr 2026 10:29:18 +0700 Subject: [PATCH 2/3] Update config.fish (add missing end in #3174) Add missing end in config.fish after commit #3174 --- dots/.config/fish/config.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/dots/.config/fish/config.fish b/dots/.config/fish/config.fish index 55fdccca2..f10482d06 100755 --- a/dots/.config/fish/config.fish +++ b/dots/.config/fish/config.fish @@ -29,4 +29,5 @@ if status is-interactive end if test "$TERM" = "xterm-kitty" alias ssh 'kitten ssh' + end end From 747abbde9e1b0515e4b6ebc8adc0ffedc9e6d013 Mon Sep 17 00:00:00 2001 From: Justin <136163666+lunstia@users.noreply.github.com> Date: Mon, 6 Apr 2026 02:44:36 -0400 Subject: [PATCH 3/3] make screen snip keybind take screenshot of only focused monitor (#3177) Co-authored-by: 97237370+end-4@users.noreply.github.com --- dots/.config/hypr/hyprland/keybinds.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dots/.config/hypr/hyprland/keybinds.conf b/dots/.config/hypr/hyprland/keybinds.conf index 604a5b87b..d69f5bea9 100644 --- a/dots/.config/hypr/hyprland/keybinds.conf +++ b/dots/.config/hypr/hyprland/keybinds.conf @@ -69,7 +69,6 @@ bind = Super+Shift, T, global, quickshell:screenTranslate # Translate screen con bind = Super+Shift, X,exec, qs -c $qsConfig ipc call TEST_ALIVE || pidof slurp || grim -g "$(slurp $SLURP_ARGS)" "/tmp/ocr_image.png" && tesseract "/tmp/ocr_image.png" stdout -l $(tesseract --list-langs | awk 'NR>1{print $1}' | tr '\\n' '+' | sed 's/\\+$/\\n/') | wl-copy && rm "/tmp/ocr_image.png" # [hidden] # Color picker bindd = Super+Shift, C, Color picker, exec, hyprpicker -a # Pick color (Hex) >> clipboard -bindln = Ctrl,Print,exec,grim - | wl-copy # [hidden] Screenshot >> clipboard & file (clipboard) # Recording stuff bindl = Super+Shift, R, global, quickshell:regionRecord # Record region (no sound) bindl = Super+Shift, R, exec, qs -c $qsConfig ipc call TEST_ALIVE || ~/.config/quickshell/$qsConfig/scripts/videos/record.sh # [hidden] Record region (no sound) (fallback) @@ -78,8 +77,9 @@ bindl = Super+Alt, R, exec, qs -c $qsConfig ipc call TEST_ALIVE || ~/.config/qui bindl = Ctrl+Alt, R, exec, ~/.config/quickshell/$qsConfig/scripts/videos/record.sh --fullscreen # [hidden] Record screen (no sound) bindl = Super+Shift+Alt, R, exec, ~/.config/quickshell/$qsConfig/scripts/videos/record.sh --fullscreen --sound # Record screen (with sound) # Fullscreen screenshot -bindl = ,Print,exec,grim - | wl-copy # Screenshot >> clipboard -bindln = Ctrl,Print, exec, mkdir -p $(xdg-user-dir PICTURES)/Screenshots && grim $(xdg-user-dir PICTURES)/Screenshots/Screenshot_"$(date '+%Y-%m-%d_%H.%M.%S')".png # Screenshot >> clipboard & file +bindl = ,Print,exec,grim -o "$(hyprctl activeworkspace -j | jq -r '.monitor')" - | wl-copy # Screenshot >> clipboard +bindln = Ctrl,Print, exec, mkdir -p $(xdg-user-dir PICTURES)/Screenshots && grim -o "$(hyprctl activeworkspace -j | jq -r '.monitor')" $(xdg-user-dir PICTURES)/Screenshots/Screenshot_"$(date '+%Y-%m-%d_%H.%M.%S')".png # Screenshot >> clipboard & file +bindln = Ctrl,Print,exec,grim -o "$(hyprctl activeworkspace -j | jq -r '.monitor')" - | wl-copy # [hidden] Screenshot >> clipboard & file (clipboard) # AI bindd = Super+Shift+Alt, mouse:273, Generate AI summary for selected text, exec, ~/.config/hypr/hyprland/scripts/ai/primary-buffer-query.sh # [hidden] AI summary for selected text