This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MacOS 13, 8c CPU, 14c GPU, 512GB SSD | |
| "OS Build Version" = "22A380" | |
+-o J314sAP <class IOPlatformExpertDevice, id 0x10000024b, registered, matched, active, busy 0 (171417 ms), retain 39> | |
| | | | "afr-perf-states" = <01000000000000000800000000000000c87909000000000000a493d600000000c87909000000000000a493d600000000c8790900000000000084d71700000000987b0a00000000000054ea2a00000000f8e80a000000000000e9a43500000000c8790900000000000084d71700000000c8790900000000000084d71700000000c8790900000000000084d717000000000000000000000000> | |
| | | | "perf-states-sram" = <0000000016030000009e2c171603000080c5f71c1603000000b29f2616030000003c592e16030000008bef391603000000643f4d5e0300000000000016030000009e2c171603000080c5f71c1603000000b29f2616030000003c592e16030000008bef391603000000643f4d61030000> | |
| | | | "perf-states-sram1" = <0000000016030000009e2c171603000080c5f71c1603000000b29f2616030000003c592e16030000008bef391603000000643f4d61030000> | |
| | | | "perf-states1" = <0000000090010000009e2c175e02000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Detect the correct TERM value for new sessions. | |
# if-shell uses /bin/sh, so bashisms like [[ do not work. | |
if "[ $(tput colors) = 16777216 ]" { | |
set -g default-terminal "tmux-direct" | |
} { | |
if "[ $(tput colors) = 256 ]" { | |
set -g default-terminal "tmux-256color" | |
} { | |
set -g default-terminal "tmux" | |
} |