Download the latest version of Mouse Acceleration for Mac - GUI and startup item for MouseFix. Read 2 user reviews of Mouse Acceleration on MacUpdate. Disable mouse acceleration on mac os x. GitHub Gist: instantly share code, notes, and snippets.
- Download SmoothCursor
Version 2.6.4 (version history) — OS X 10.7+ required.
What is SmoothCursor?
SmoothCursor is a status bar application that provides separate controls for customizing the mouse and trackpad accelerations and a quick way to alternate between acceleration profiles using a HotKey — perfect for drawing applications and FPS games!
User Testimonials
“SmoothCursor for Mac makes customizing mouse and trackpad controls quick and intuitive.”
Chris Page, Download CNET
“I love Smooth Cursor because it can work with a mouse and trackpad independently.”
James Dempsey, The Graphic Mac
“Does what it promises and has a very appealing interface.”
MacUpdate User
Features at a Glance
User-definable Hotkey
One of the most relevant features in version 2.0 is the ability to alternate between 2 profiles using an user-definable HotKey.
Alternating between acceleration profiles can be accomplished in 2 different ways:
- Mode 1: Activates alternative profile after Hotkey is released
- Mode 2: Activates alternative profile while Hotkey is pressed
System Notifications
SmoothCursor will display a system notification every time a different profile is activated using Growl or Mountain Lion's (10.8) Notification Center(This feature is optional and can be disabled by the user.)
And More
- Streamlined user interface
- Always one-click away
- Supported acceleration ranges: normal acceleration (>0 to 6), no acceleration (0), inverse acceleration (-6 to <0)
- Automatically start at login (user-definable)
- Special enforce mode (preserves user acceleration settings even if some other processes try to change them)
International
- SmoothCursor comes with built-in support for English, German, French, Spanish, Catalan, Russian, Japanese (日本語), Simplified Chinese (简体中文), and Traditional Chinese (繁體中文)!
Published On | Article Title | Source |
---|---|---|
10/14/13 | SmoothCursor for Mac allows you to customize mouse and trackpad acceleration | download.cnet.com |
04/22/13 | Smooth Cursor for OS X simplifies acceleration settings of a Mouse & Trackpad | techglimpse.com |
03/18/13 | This is your cursor on drugs… | thegraphicmac.com |
12/21/12 | マウスとトラックパッドのアクセラレーションを個別設定できる『Smooth Cursor』 | lifehacker.jp |
12/13/12 | Smooth Cursor za fino nastavitev miške in trackpada | jabolko.org |
12/13/12 | Smooth Cursor – Definições distintas para rato e trackpad no Mac | pplware.sapo.pt |
12/13/12 | Smooth Cursor For Mac Separates Mouse And Trackpad Acceleration Control | lifehacker.com.au |
12/12/12 | Controllare la velocità del mouse e del Trackpad separatamente su Mac con Smooth Cursor | appleflick.com |
12/12/12 | Smooth Cursor for Mac Controls Acceleration for a Mouse and Trackpad Separately | lifehacker.com |
12/11/12 | Control the Acceleration Speeds of a Mac Mouse & Trackpad Separately | osxdaily.com |
12/07/12 | Smooth Cursor Mac OSX : Accelerer la Vitesse du Trackpad et de la Souris (gratuit) | www.maxiapple.com |
12/03/12 | How To Customize The Acceleration Settings On Your Mac’s Mouse Or Trackpad | mac360.com |
11/27/12 | Adjust Magic Pad and Magic Mouse tracking speeds independently | thegraphicmac.com |
03/28/12 | La velocità di risposta del nostro mouse non è più un problema | appletvitalia.it |
03/14/12 | Speed Up Or Slow Down Your Mouse or Trackpad [OS X Tips] | cultofmac.com |
Kill Mouse Accel Mac Download Torrent
SmoothCursor 2.6.4 (build 247)November 3, 2018
- ENHANCED Updated application self-updating mechanism (Sparkle) to a current version
SmoothCursor 2.6.3 (build 245)November 3, 2018
- FIXED Fixed status bar icon not being visible when using macOS Mojave in dark mode
SmoothCursor 2.6.2 (build 242)August 27, 2018
- ENHANCED Updated all external URLs to use secure protocol (https.)
SmoothCursor 2.6.1 (build 239)January 30, 2016
- FIXED Fixed a security vulnerability involving the Sparkle Updater (VulnSec.)
SmoothCursor 2.6 (build 237)March 16, 2015
- NEW Updated status bar icon style for better compatibility with OS X 10.10 (Yosemite) Dark Theme
- ENHANCED Disabled popover transparency in OS X 10.10 (Yosemite)
/** |
* to build: gcc -o mousekiller mousekiller.c -framework CoreFoundation -framework IOKit |
*/ |
#include<stdio.h> |
#include<IOKit/hidsystem/IOHIDLib.h> |
#include<IOKit/hidsystem/IOHIDParameter.h> |
intmain(int argc, char **argv) |
{ |
constint32_t accel = -0x10000; // if this ever becomes a scale factor, we set it to one |
if(argc < 2) { |
fprintf(stderr, 'Give me mouse and/or trackpad as argumentsn'); |
return1; |
} |
io_connect_t handle = NXOpenEventStatus(); |
if(handle) { |
int i; |
for(i=1; i<argc; i++) { |
CFStringRef type = 0; |
if(strcmp(argv[i], 'mouse') 0) |
type = CFSTR(kIOHIDMouseAccelerationType); |
elseif(strcmp(argv[i], 'trackpad') 0) |
type = CFSTR(kIOHIDTrackpadAccelerationType); |
if(type && IOHIDSetParameter(handle, type, &accel, sizeof accel) != KERN_SUCCESS) |
fprintf(stderr, 'Failed to kill %s acceln', argv[i]); |
} |
NXCloseEventStatus(handle); |
} else |
fprintf(stderr, 'No handlen'); |
return0; |
} |
commented Sep 28, 2011
Credit to these guys: |