mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-15 06:32:40 +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 =
|
kb_rules =
|
||||||
|
|
||||||
repeat_rate = 50
|
repeat_rate = 50
|
||||||
repeat_delay = 175
|
repeat_delay = 200
|
||||||
|
|
||||||
follow_mouse = 2
|
follow_mouse = 2
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,15 @@
|
|||||||
|
|
||||||
XDG_DATA_HOME=${XDG_DATA_HOME:-"$HOME"/.local/share}
|
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() {
|
uninstall() {
|
||||||
[[ -d "$XDG_DATA_HOME/gopass" ]] && rm -rf "$XDG_DATA_HOME/gopass"
|
[[ -d "$XDG_DATA_HOME/gopass" ]] && rm -rf "$XDG_DATA_HOME/gopass"
|
||||||
}
|
}
|
||||||
|
|
||||||
arg=${1:-""}
|
arg=${1:-""}
|
||||||
[[ $arg == "install" ]] && install
|
[[ $arg == "install" ]] && install
|
||||||
|
[[ $arg == "uninstall" ]] && uninstall
|
||||||
|
|||||||
Reference in New Issue
Block a user