1
1
mirror of https://github.com/rywng/dotfiles.git synced 2024-11-24 11:51:50 +08:00

disable dwt to fix trackpad and add auto mpd

This commit is contained in:
juan 2021-11-25 22:59:00 +08:00
parent f8a36cf207
commit c2a16e93f7
2 changed files with 7 additions and 0 deletions

View File

@ -82,6 +82,7 @@ input type:touchpad {
accel_profile adaptive accel_profile adaptive
pointer_accel -0.3 pointer_accel -0.3
tap enabled tap enabled
dwt disabled
} }
###END### ###END###

6
.zshrc
View File

@ -96,6 +96,12 @@ dmpv () {
disown disown
} }
# run mpd if not running
ncmpcpp () {
pidof mpd > /dev/null || mpd.sh > /dev/null || true
command ncmpcpp
}
#config location #config location
export XDG_CONFIG_HOME=$HOME/.config export XDG_CONFIG_HOME=$HOME/.config
export XDG_CACHE_HOME=$HOME/.cache export XDG_CACHE_HOME=$HOME/.cache