diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-06-26 09:40:40 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-06-26 09:40:40 -0400 |
commit | 8ced36068c0d4d139b8f2150fec1e2f72efecee7 (patch) | |
tree | a8fd9b0c44905d02e47df8c92adda3519645289c | |
parent | Don't make the sidebar visible at mutt startup (diff) |
Some synaptics settings
Diffstat (limited to '')
-rwxr-xr-x | .xinitrc | 23 |
1 files changed, 20 insertions, 3 deletions
@@ -7,15 +7,32 @@ trayer --tint black --edge top --SetDockType true --SetPartialStrut true \ xautolock -time 2 & /home/ryan/.dzen/battery.sh & # /home/ryan/.dzen/temperature.sh & -# GSD_PATH & +# /usr/local/libexec/gnome-settings-daemon & #kmix & # feh --bg-center /home/ryan/.local/share/wallpapers/skyscraper_at_sunset.bmp # feh --bg-center /home/ryan/.local/share/wallpapers/totheglory.jpg urxvtd -q -f -o & urxvtc & # /home/ryan/.screenlayout/work.sh -/home/ryan/.screenlayout/SCREENLAYOUT.sh && nitrogen --restore -if [ "PULSE_JACKD" = "True" ]; then +/home/ryan/.screenlayout/nu-home.sh && nitrogen --restore +if [ "True" = "True" ]; then sh bin/startaudio & fi + +# Synaptics: +synclient HorizTwoFingerScroll=0 || true +synclient HorizEdgeScroll=1 || true +# Enable circular scrolling with top edge activating +synclient CircularScrolling=1 || true +synclient CircScrollTrigger=1 || true +# One finger is left click +synclient TapButton1=1 || true +# Two is right click +synclient TapButton2=3 || true +# Three is middle click +synclient TapButton3=2 || true +# Enable coasting +synclient CoastingSpeed=5 +synclient CoastingFriction=30 + exec /usr/bin/xmonad |