#!/bin/bash
# If you want to disable any AUTOSTART application, go to e17 preferences -> Applications -> Startup Applications , and check the "restart applications" too
#
# This file is maintained for compatibility reasons and for fast things, if you want to launch an application at the Enlightenment startup you should use the Enlightenment Remembers features instead (Alt + right click in any application-window and then search Remembers), or another way is to go to the e17 preferences -> Applications -> Startup Applications, if you need to run something specific that is not in the list then you need to go first to the "New Application" in the same section

# Examples:
#if [[ -f "$HOME/.Xmodmap.extra" ]] ; then
   #xmodmap $HOME/.Xmodmap.extra
#fi

# disable touchpad clicks while typing
# update: we moved this feature to touchpad-configurator, from elive features!
#egrep -i 'synap|alps|etps|elan' /proc/bus/input/devices
#if grep -qsiE 'synap|alps|cyapa|trackpad|etps|elan' /proc/bus/input/devices ; then
    #if ! ps ux | grep -v "grep" | grep -qs "syndaemon" ; then
        #LC_ALL=C syndaemon -d -i 1 -t -k &
    #fi
#fi

