From 0d6ea4025289f63615d9fde39a95736a9386c787 Mon Sep 17 00:00:00 2001 From: Thomas Anagrius Date: Fri, 25 Jul 2025 18:20:51 +0200 Subject: [PATCH 1/2] Fix fzf completion path for Arch Linux Update fzf completion source path from /usr/share/bash-completion/completions/fzf to /usr/share/fzf/completion.bash to match the actual file location on Arch Linux. --- default/bash/init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default/bash/init b/default/bash/init index f0ef182..7e1db9e 100644 --- a/default/bash/init +++ b/default/bash/init @@ -7,8 +7,8 @@ if command -v zoxide &> /dev/null; then fi if command -v fzf &> /dev/null; then - if [[ -f /usr/share/bash-completion/completions/fzf ]]; then - source /usr/share/bash-completion/completions/fzf + if [[ -f /usr/share/fzf/completion.bash ]]; then + source /usr/share/fzf/completion.bash fi if [[ -f /usr/share/fzf/key-bindings.bash ]]; then source /usr/share/fzf/key-bindings.bash From ac935bdaed38bbf453a7fbaf5bf1b6819acd6da2 Mon Sep 17 00:00:00 2001 From: Ryan Hughes <1630358+ryanrhughes@users.noreply.github.com> Date: Fri, 25 Jul 2025 18:12:08 -0400 Subject: [PATCH 2/2] Kill selection if already active --- bin/omarchy-cmd-screenshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-cmd-screenshot b/bin/omarchy-cmd-screenshot index e2878e4..f270162 100755 --- a/bin/omarchy-cmd-screenshot +++ b/bin/omarchy-cmd-screenshot @@ -1,6 +1,6 @@ #!/bin/bash -hyprshot -m ${1:-region} --raw | +pkill slurp || hyprshot -m ${1:-region} --raw | satty --filename - \ --output-filename ~/Pictures/screenshot-$(date +'%Y-%m-%d_%H-%M-%S').png \ --early-exit \