Skip to content

Latest commit

 

History

History
57 lines (47 loc) · 2.16 KB

README.md

File metadata and controls

57 lines (47 loc) · 2.16 KB

Termux 'extra-keys' based keyboard for oculus quest (qwertz)

version 1.01


Trying to match most physical keys, some optional keys replaced.

Installation

  • make sure your quest is in developer mode

  • download latest termux apk file (https://f-droid.org/en/packages/com.termux/)

  • open adb connection to headset and push files to /sdcard

    • adb shell mkdir /sdcard/termux && adb push *.properties /sdcard/termux/
  • sideload apk using adb (or sidequest for the lazy ppl)

    • adb install -g com.termux_$ver.apk
  • open termux app in headset under 'unknown sources'

  • create directory .termux in termux home

  • run termux-setup-storage to set permissions for /sdcard access

  • copy files from /sdcard/termux/ to /data/data/com.termux/files/home/.termux/

  • colors.properties is optional, adjust to your preference

    (uses manjaro green '#1aab9b' as terminal foreground color)


Session handling see (https://wiki.termux.com/wiki/Terminal_Settings)

  • CTRL + t create new session
  • CTRL + n rename current session
  • CTRL + 1 switch to previous session
  • CTRL + 2 switch to next session

Popup keys

  • long press ESC for CTRL + d (end session)
  • long press TAB for ALT
  • long press CTRL for SHIFT
  • long press SPACE for DRAWER (open termux sessions)
  • long press UP for PGUP
  • long press DOWN for PGDN
  • long press LEFT for HOME
  • long press RIGHT for END
  • long press M◂ for #CMD (see below)

Helpful bash shortcuts using macros

modifier action
UPPER transform word in front of cursor to UPPER case (ALT + u)
LOWER transform word in front of cursor to lower case (ALT + l)
#CMD comment current line(command) and start new line (ALT + #)
ARG yank last argument (CTRL + SHIFT + y)
C◂ backward move one word (CTRL + Left)
C▸ forward move one word (CTRL + Right)
M◂ backward delete one word (ALT + BACKSPACE)