Serviços:
-
Para testar teclado e mouse:
-
Para testar teclado:
# Make mouse useful in copy mode | |
setw -g mode-mouse on | |
# Allow mouse to select which pane to use | |
set -g mouse-select-pane on | |
# Allow mouse dragging to resize panes | |
set -g mouse-resize-pane on | |
# Allow mouse to select windows |
Para testar teclado e mouse:
Para testar teclado:
[Options] | |
UseInitBeep=1 | |
Log=0 | |
Console=0 | |
DebugMode=0 | |
InternetDatabaseUrl=http://www.x360ce.com/webservices/x360ce.asmx | |
InternetFeatures=1 | |
InternetAutoload=1 | |
AllowOnlyOneCopy=1 |
class TestMailer < ActionMailer::Base; def test; mail from: 'sender@mail.com', to: 'recipient@mail.com', subject: 'Test e-mail subject', body: 'Test e-mail body'; end; end; TestMailer.test.deliver_now |
#!/bin/sh | |
# Find the amount by doign | |
# synclient | grep HorizScrollDelta | |
# synclient | grep VertScrollDelta | |
# And then simply negative that value for this | |
# Found at | |
# https://askubuntu.com/questions/690512/how-to-enable-natural-scrolling-in-xfce4/853262 | |
# This is because, although xubuntu 18.04 has reverse scrolling option in touchpad | |
# settings, it doesn't really work, the setting does not cascade to gnome apps for some reason. | |
synclient HorizScrollDelta=-116 |
!!! Load it using `xmodmap myDell7559.xmodmap` on login !!! | |
!!! Remaps pgup to delete !!! | |
keycode 112 = Delete | |
!!! Remaps num lock to home !!! | |
keycode 77 = Home | |
!!! Remaps numeric 7 to end !!! | |
keycode 79 = End |
# Generated by Gestures 0.2.2 --> https://gitlab.com/cunidev/gestures | |
# Manual editing might result in data loss! | |
# Invalid lines | |
# Unsupported lines | |
# Swipe threshold (0-100) |
// sublime.log_input(True) | |
// sublime.log_commands(True) | |
[ | |
{ "keys": ["alt+f4"], "command": "exit" }, | |
{ "keys": ["ctrl+alt+f4"], "command": "close_window" }, | |
{ "keys": ["ctrl+'"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }, | |
{ "keys": ["ctrl+keypad_divide"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+keypad_divide"], "command": "toggle_comment", "args": { "block": true } }, | |
// Comment on cce notebook - linux | |
{ "keys": ["control+q"], "command": "toggle_comment", "args": { "block": false } } |
[ | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
{ "keys": ["ctrl+f11"], "command": "toggle_menu" } | |
] |
# based on this article: https://www.linux-toys.com/?p=1153 | |
# original pi settings | |
vm.swappiness = 60 | |
vm.vfs_cache_pressure = 100 | |
vm.dirty_background_ratio = 10 | |
vm.dirty_ratio = 20 | |
# test settings | |
sudo sysctl -w vm.swappiness=15 |