Skip to content

Instantly share code, notes, and snippets.

View ristomatti's full-sized avatar

Ristomatti Airo ristomatti

  • Maya Consulting Oy
  • Helsinki, Finland
View GitHub Profile
@ristomatti
ristomatti / keybindings.json
Last active February 11, 2017 19:29
Visual Studio Code keybindings
[
// Navigation
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
}, {
"key": "alt+right",
"command": "workbench.action.navigateForward"
}, {
"key": "alt+a",
@ristomatti
ristomatti / settings.json
Last active February 11, 2017 19:33
Visual Studio Code settings
{
// General
"window.zoomLevel": 0,
"extensions.autoUpdate": true,
// Workbench
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.sideBar.location": "left",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": true,
@ristomatti
ristomatti / ionmove.ahk
Last active May 4, 2023 17:57
AutoHotkey v1 script to mimic some aspects of tiling window managers in Windows
#Persistent
Menu, Tray, NoStandard
Menu, Tray, Add, Suspend, SuspendScript
Menu, Tray, Add, Exit, QuitScript
Menu, Tray, Tip, IonMove
Return
SuspendScript:
Suspend
Menu, Tray, ToggleCheck, Suspend
@ristomatti
ristomatti / keymapper.conf
Last active April 23, 2024 21:11
Keymapper config
#
# Keymapper - https://github.com/houmain/keymapper
#
STATE_DIR = ~/.local/state/keymapper/virtual
LOG_FILE = ~/tmp/keymapper.log
# On startup
createStateDir = $(mkdir -p STATE_DIR)
setScrollButton = $(sleep 1 && xinput set-prop "pointer:Keymapper" "libinput Button Scrolling Button" 2)
enableScrollButton = $(sleep 1 && xinput set-prop "pointer:Keymapper" "libinput Scroll Method Enabled" 0, 0, 1)