(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:
| #!/bin/sh | |
| # Load uhid (DS5 emulation) | |
| echo "Loading uhid kernel module for DS5 emulation." | |
| modprobe uhid | |
| # Ensure Sunshine can grab images from KMS | |
| path_to_setcap=$(which setcap) | |
| path_to_sunshine=$(readlink -f "/home/linuxbrew/.linuxbrew/bin/sunshine") | |
| if [ -x "$path_to_setcap" ] ; then |
| #!/usr/bin/env bash | |
| ## This is a fix for the MacOS Plex app on Apple Silicon, at least for my client app. Version 1.110.0.351-4e48eb83. | |
| ## I am not sure why it doesn't work out of the box, but updating this manually and symlinking it to the expected location seems to fix it for me. | |
| BROKEN_MPV_LOCATION="/Applications/Plex.app/Contents/Frameworks" | |
| TIMESTAMP=$(date +"%Y-%m-%d_%H-%M-%S") | |
| # Backing up broken version of libmpv.2.dylib | |
| echo "Backing up broken version of libmpv.2.dylib..." && |