mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-13 22:02:34 +00:00
fix: Sets hypr input debounce delay back to 200ms as I was getting lots of false keypresses.
This commit is contained in:
2
env/.config/hypr/hyprinput.conf
vendored
2
env/.config/hypr/hyprinput.conf
vendored
@@ -11,7 +11,7 @@ input {
|
||||
kb_rules =
|
||||
|
||||
repeat_rate = 50
|
||||
repeat_delay = 175
|
||||
repeat_delay = 200
|
||||
|
||||
follow_mouse = 2
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user