We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2842662 commit 00463bfCopy full SHA for 00463bf
sublime
@@ -0,0 +1,4 @@
1
+#!/bin/bash
2
+#runs sublime
3
+
4
+/opt/sublime_text/sublime_text "$@"
trackpoint-speed.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+import os
+import re
5
+f = os.popen('xinput')
6
+xinput = f.read()
7
+regex = re.compile('TrackPoint id=([0-9]*)')
8
+idnumber=regex.findall(xinput)
9
+os.system('xinput --set-prop "%s" "Device Accel Constant Deceleration" 0.2' % int(idnumber[0]))
0 commit comments