mass change: apply snake case to tokens (#2518)

This commit is contained in:
Guido Lena Cota
2018-10-29 12:14:25 +01:00
committed by Starbeamrainbowlabs
parent 9a9265c672
commit 18370557b2
11 changed files with 20 additions and 20 deletions

View File

@@ -20,7 +20,7 @@
- Add a remote source:
`flatpak remote-add --if-not-exists {{remote-name}} {{remote-url}}`
`flatpak remote-add --if-not-exists {{remote_name}} {{remote_url}}`
- List all configured remote sources:

View File

@@ -8,7 +8,7 @@
- Trace a process and filter output by system call:
`strace -p {{pid}} -e {{system call name}}`
`strace -p {{pid}} -e {{system_call_name}}`
- Count time, calls, and errors for each system call and report a summary on program exit:

View File

@@ -8,16 +8,16 @@
- Set Wacom area to specific screen. Get name of the screen with `xrandr`:
`xsetwacom set "{{device name}}" MapToOutput {{screen}}`
`xsetwacom set "{{device_name}}" MapToOutput {{screen}}`
- Set mode to relative (like a mouse) or absolute (like a pen) mode:
`xsetwacom set "{{device name}}" Mode "{{Relative|Absolute}}"`
`xsetwacom set "{{device_name}}" Mode "{{Relative|Absolute}}"`
- Rotate the input (useful for tablet-PC when rotating screen) by 0|90|180|270 degrees from "natural" rotation:
`xsetwacom set "{{device name}}" Rotate {{none|half|cw|ccw}}`
`xsetwacom set "{{device_name}}" Rotate {{none|half|cw|ccw}}`
- Set button to only work when the tip of the pen is touching the tablet:
`xsetwacom set "{{device name}}" TabletPCButton "on"`
`xsetwacom set "{{device_name}}" TabletPCButton "on"`