Skip to content

Commit d878878

Browse files
committed
Add direct bash uninstall script
1 parent 217e507 commit d878878

File tree

1 file changed

+40
-38
lines changed

1 file changed

+40
-38
lines changed

README.md

Lines changed: 40 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ gedit $(comfortable-swipe config)
6969
| down3 | 3-finger swipe down | ctrl+alt+Up | switch to above workspace |
7070
| down4 | 4-finger swipe down | ctrl+alt+shift+Up | move window to above workpace |
7171
| threshold | mouse pixels to activate swipe | 0.0 | tweak this if you're having troubles with touchpad sensitivity (higher = less sensitive, values can be as large as 1000.0) |
72-
| hold3 | holds a mouse button when 3 fingers are down | (none) | See [Mouse Gestures (Experimental)](#mouse-gestures-experimental) |
73-
| hold4 | holds a mouse button when 4 fingers are down | (none) | See [Mouse Gestures (Experimental)](#mouse-gestures-experimental) |
72+
| hold3 | holds a mouse button when 3 fingers are down | (none) | See [Mouse Gestures (Experimental)](#mouse-gestures-experimental) |
73+
| hold4 | holds a mouse button when 4 fingers are down | (none) | See [Mouse Gestures (Experimental)](#mouse-gestures-experimental) |
7474

7575
After making changes, make sure to restart the program:
7676

@@ -154,7 +154,7 @@ Refer to https://www.linux.org/threads/xdotool-keyboard.10528/ for a complete li
154154
# Ubuntu
155155
down3 = ctrl+super+d
156156
```
157-
157+
158158
```bash
159159
# GNOME
160160
down3 = super+d
@@ -198,57 +198,57 @@ We have included simple mouse gestures on swipe by setting `hold3` and `hold4`.
198198
```bash
199199
Possible Values (hold3, hold4):
200200

201-
move # just move the mouse cursor (no mousedown)
202-
button1 # hold left click on finger swipe
203-
button2 # hold middle click on finger swipe
204-
button3 # hold right click on finger swipe
205-
button4 # wheel up on finger swipe (experimental)
206-
button5 # wheel down on finger swipe (experimental)
207-
scroll # naive 3/4 finger natural scroll (no acceleration, very experimental)
208-
scroll_reverse # naive 3/4 finger reverse scroll (no acceleration, very experimental)
201+
move # just move the mouse cursor (no mousedown)
202+
button1 # hold left click on finger swipe
203+
button2 # hold middle click on finger swipe
204+
button3 # hold right click on finger swipe
205+
button4 # wheel up on finger swipe (experimental)
206+
button5 # wheel down on finger swipe (experimental)
207+
scroll # naive 3/4 finger natural scroll (no acceleration, very experimental)
208+
scroll_reverse # naive 3/4 finger reverse scroll (no acceleration, very experimental)
209209
```
210210

211211
Any value not mentioned above disables the mouse-hold.
212212

213213
Examples:
214214

215-
* 3-finger drag
215+
- 3-finger drag
216216

217-
```bash
218-
hold3 = button1
219-
```
217+
```bash
218+
hold3 = button1
219+
```
220220

221-
* 4-finger drag (with middle click)
221+
- 4-finger drag (with middle click)
222222

223-
```bash
224-
hold4 = button2
225-
```
223+
```bash
224+
hold4 = button2
225+
```
226226

227-
* 3-finger natural scroll
227+
- 3-finger natural scroll
228228

229-
```bash
230-
hold3 = scroll
231-
```
229+
```bash
230+
hold3 = scroll
231+
```
232232

233-
* 4-finger reverse scroll
233+
- 4-finger reverse scroll
234234

235-
```bash
236-
hold4 = scroll_reverse
237-
```
235+
```bash
236+
hold4 = scroll_reverse
237+
```
238238

239-
* Just move the cursor
239+
- Just move the cursor
240240

241-
```bash
242-
hold3 = move
243-
hold4 = move
244-
```
241+
```bash
242+
hold3 = move
243+
hold4 = move
244+
```
245245

246-
* Any other command will disable the mouse hold
246+
- Any other command will disable the mouse hold
247247

248-
```bash
249-
hold3 = disabled
250-
hold4 = nothing
251-
```
248+
```bash
249+
hold3 = disabled
250+
hold4 = nothing
251+
```
252252

253253
**Note**: Applying any mouse-hold configuration will disable up/left/right/down behavior to avoid gesture conflicts. The logic of this will be improved in the future.
254254

@@ -289,7 +289,9 @@ If you can see `GESTURE_SWIPE_XXX` in your output, that means your touchpad supp
289289

290290
## Uninstall
291291

292-
Download the `uninstall` script then run `bash uninstall`
292+
```bash
293+
wget -qO - https://raw.githubusercontent.com/Hikari9/comfortable-swipe/master/uninstall | bash
294+
```
293295

294296
## Bug Reports
295297

0 commit comments

Comments
 (0)