From 00c9c77bccee54254e000a490a4d0ccb9c24cc4d Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Mon, 10 Nov 2025 16:09:11 -0500 Subject: [PATCH] fix: Sets hypr input debounce delay back to 200ms as I was getting lots of false keypresses. --- env/.config/hypr/hyprinput.conf | 2 +- runs/after/gopass | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/env/.config/hypr/hyprinput.conf b/env/.config/hypr/hyprinput.conf index c83e05d..de53977 100644 --- a/env/.config/hypr/hyprinput.conf +++ b/env/.config/hypr/hyprinput.conf @@ -11,7 +11,7 @@ input { kb_rules = repeat_rate = 50 - repeat_delay = 175 + repeat_delay = 200 follow_mouse = 2 diff --git a/runs/after/gopass b/runs/after/gopass index fa0ce44..e4b23e0 100755 --- a/runs/after/gopass +++ b/runs/after/gopass @@ -2,9 +2,15 @@ XDG_DATA_HOME=${XDG_DATA_HOME:-"$HOME"/.local/share} +install() { + [[ ! -d "$XDG_DATA_HOME/gopass/stores/root" ]] && + gopass clone ssh://git@git.housh.dev:2222/michael/passwordstore.git +} + uninstall() { [[ -d "$XDG_DATA_HOME/gopass" ]] && rm -rf "$XDG_DATA_HOME/gopass" } arg=${1:-""} [[ $arg == "install" ]] && install +[[ $arg == "uninstall" ]] && uninstall