diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2023-09-16 12:01:01 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2023-09-16 12:02:00 +0000 |
commit | 63fee6b75ff7c508ef959cb6515f733c29f3d837 (patch) | |
tree | 73bfac3ae70485fa27dfd638b75df97e93ac6e0a /dwm/.dwm/autostart | |
parent | 2e5aa362b54d0a4865b58a9fbf8834a870b4ba0e (diff) | |
download | dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.gz dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.bz2 dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.lz dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.xz dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.tar.zst dotfiles-63fee6b75ff7c508ef959cb6515f733c29f3d837.zip |
Update MANPAGER to use nvim and update dwm
Diffstat (limited to 'dwm/.dwm/autostart')
-rwxr-xr-x | dwm/.dwm/autostart | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dwm/.dwm/autostart b/dwm/.dwm/autostart index f793957..b288134 100755 --- a/dwm/.dwm/autostart +++ b/dwm/.dwm/autostart @@ -13,16 +13,16 @@ feh --auto-reload --bg-fill /usr/share/backgrounds/background.png & # Set up touchpad controls # Libinput -TID=$(xinput | sed -n 's/.*Touchpad.*id=\([0-9]*\).*/\1/p') -#xinput --set-prop $TID 'libinput Accel Speed' 0.5 -xinput --set-prop $TID 'libinput Tapping Enabled' 1 & -xinput --set-prop $TID 'libinput Natural Scrolling Enabled' 1 & +#TID=$(xinput | sed -n 's/.*Touchpad.*id=\([0-9]*\).*/\1/p') +##xinput --set-prop $TID 'libinput Accel Speed' 0.5 +#xinput --set-prop $TID 'libinput Tapping Enabled' 1 & +#xinput --set-prop $TID 'libinput Natural Scrolling Enabled' 1 & # Synapse -#TID=`xinput list | grep "SynPS/2 Synaptics TouchPad" | sed 's/.*id=\([0-9]*\).*/\1/g'` -#PROP_NO=`xinput list-props ${TID} | grep "Synaptics Scrolling Distance" | sed 's/.*(\([0-9]*\)).*/\1/g'` -#xinput --set-prop $TID 'Synaptics Tap Action' 1 -#xinput set-prop ${TID} ${PROP_NO} -106 -106 +TID=`xinput list | grep "SynPS/2 Synaptics TouchPad" | sed 's/.*id=\([0-9]*\).*/\1/g'` +PROP_NO=`xinput list-props ${TID} | grep "Synaptics Scrolling Distance" | sed 's/.*(\([0-9]*\)).*/\1/g'` +xinput --set-prop $TID 'Synaptics Tap Action' 1 +xinput set-prop ${TID} ${PROP_NO} -106 -106 # run bar script and dwm ( do not remove this ) SYMLINKDIR=$(readlink -f "$0") |