(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
| usage() { | |
| cat <<EOF | |
| Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
| kern.maxproc: Maximum number of processes | |
| kern.ngroups: Maximum number of supplemental groups a user can belong to | |
| kern.ipc.shm_allow_removed: Enable/Disable attachment to attached segments marked for removal | |
| kern.ipc.shm_use_phys: Enable/Disable locking of shared memory pages in core | |
| kern.ipc.shmall: Maximum number of pages available for shared memory | |
| kern.ipc.shmseg: Number of segments per process | |
| kern.ipc.shmmni: Number of shared memory identifiers | |
| kern.ipc.shmmin: Minimum shared memory segment size | |
| kern.ipc.shmmax: Maximum shared memory segment size | |
| kern.ipc.semaem: Adjust on exit max value |
| REM Windows Search | |
| sc config WSearch start=disabled | |
| REM SSDP Discovery | |
| sc config SSDPSRV start=disabled | |
| REM Geolocation Service | |
| sc config lfsvc start=disabled | |
| REM ActiveX Installer | |
| sc config AXInstSV start=disabled | |
| REM AllJoyn Router Service | |
| sc config AJRouter start=disabled |