# Here is where you can put anything you need to start # that there is not an init script for. local_start() { # This is a good place to load any misc programs # on startup (use &>/dev/null to hide output) # Set the blank key to the right of "z" to keycode 126. setkeycodes 0x56 126 # We should always return 0 return 0 } local_stop() { # This is a good place to unload any misc. # programs you started above. # We should always return 0 return 0 }