fix: Sets hypr input debounce delay back to 200ms as I was getting lots of false keypresses.

This commit is contained in:
2025-11-10 16:09:11 -05:00
parent 52cbe2ad89
commit 00c9c77bcc
2 changed files with 7 additions and 1 deletions

View File

@@ -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