You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set -g @dracula-show-powerline true
set -g @dracula-fixed-location "Dallas TX"
set -g @dracula-show-flags true
set -g @dracula-show-left-icon session
set -g @dracula-cpu-usage true
set -g @dracula-cpu-percent true
set -g @dracula-cpu-display-load false
set -g @dracula-time-format "%m/%d/%y %r"
it will only display the label "CPU". I played around with the script and it looks like this line is the issue:
cpucores=$(sysctl -n hw.logicalcpu)
If I replace it will full path to sysctl it works:
cpucores=$(/usr/sbin/sysctl -n hw.logicalcpu)
System
OS: MacOS 14.3.1
Tmux Version: 3.4
The text was updated successfully, but these errors were encountered:
Describe the bug
Given this config:
it will only display the label "CPU". I played around with the script and it looks like this line is the issue:
cpucores=$(sysctl -n hw.logicalcpu)
If I replace it will full path to sysctl it works:
cpucores=$(/usr/sbin/sysctl -n hw.logicalcpu)
System
The text was updated successfully, but these errors were encountered: