- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我为一个 friend 编写了这个脚本,以便在他的屏幕上显示信息,但是每当他运行它时,他的 CPU 负载就会上升到接近 80%,并且变得非常热。不知道是不是他的电脑设置有问题,还是我这个bash写的效率很低。
#!/bin/sh
# Include config file.
. ~/.config/lemonbar/.config
# Fetch current network connection state -- and SSID, if available.
network(){
networkState=$(grep -R "up" /sys/class/net/*/operstate)
networkSSID=$(iwgetid -r)
if [[ ${networkState} != "" && ${networkSSID} != "" ]]; then
network=${networkSSID}
networkColor=${foreground}
elif [[ ${networkState} != "" ]]; then
network="Online"
networkColor=${foreground}
else
network="Offline"
networkColor=${red}
fi
echo "%{F$networkColor} ${network}"
}
# Fetch current dropbox sync status.
dropbox(){
dropboxInfo=$(dropbox-cli status)
if [[ $dropboxInfo == "Dropbox isn't running!" ]]; then
dropbox="Not Running"
dropboxColor=${red}
elif [[ $dropboxInfo == "Connecting..." || $dropboxInfo == "Starting..." ]]; then
dropbox="Connecting"
dropboxColor=${foreground}
elif [[ $(echo $dropboxInfo | grep "Syncing") != "" || $(echo $dropboxInfo | grep "Downloading") != "" || $(echo $dropboxInfo | grep "Indexing") != "" ]]; then
dropbox="Syncing"
dropboxColor=${green}
else
dropbox="Idle"
dropboxColor=${foreground}
fi
echo "%{F$dropboxColor} ${dropbox}"
}
# Fetch current volume state and mute state.
volume(){
volumeState=$(ponymix get-volume)
# Determine volume icon depending on the level of volume.
if [[ ${volumeState} -eq 0 ]]; then
volumeIcon=""
elif [[ ${volumeState} -le 50 ]]; then
volumeIcon=""
else
volumeIcon=""
fi
if $(ponymix is-muted); then
volumeColor=${red}
else
volumeColor=${foreground}
fi
echo "%{F$volumeColor}${volumeIcon} ${volumeState}%"
}
# Fetch the current percentage of the battery's capacity.
battery(){
if [[ -d /sys/class/power_supply/BAT0 ]]; then
batteryState=$(cat /sys/class/power_supply/BAT0/status)
batteryPower=$(cat /sys/class/power_supply/BAT0/capacity)
# Determine battery icon based on capacity and state.
if [[ "${batteryState}" == "Discharging" && ${batteryPower} -le 20 ]]; then
batteryIcon=""
batteryColor=${red}
elif [[ "${batteryState}" == "Discharging" && ${batteryPower} -le 40 ]]; then
batteryIcon=""
batteryColor=${foreground}
elif [[ "${batteryState}" == "Discharging" && ${batteryPower} -le 60 ]]; then
batteryIcon=""
batteryColor=${foreground}
elif [[ "${batteryState}" == "Discharging" && ${batteryPower} -le 80 ]]; then
batteryIcon=""
batteryColor=${foreground}
elif [[ "${batteryState}" == "Discharging" && ${batteryPower} -le 100 ]]; then
batteryIcon=""
batteryColor=${foreground}
else
batteryIcon=""
batteryColor=${green}
fi
echo "%{F$batteryColor}${batteryIcon} ${batteryPower}%"
else
echo "%{F$red}No Battery Detected"
fi
}
# Fetch the current date.
calendar(){
calendar=$(date "+%A, %b %d, %Y")
echo "%{F$foreground} ${calendar}"
}
# Fetch the current time.
clock(){
clock=$(date "+%I:%M %p")
echo "%{F$foreground} ${clock}"
}
# Format selected blocks for piping into bar.
status(){
currentSeparator="${separator}"
numberOfBlocks=$((${#selectedBlocks[@]} - 1))
for ((i=0; i<=${numberOfBlocks}; i++)); do
if [[ ${i} -eq ${numberOfBlocks} ]]; then
currentSeparator=""
fi
status+="$(${selectedBlocks[i]})${currentSeparator}"
done
echo "${status}"
}
# Pipe functions to the bar infinitely.
while true; do
echo "%{c}$(status)"
done | lemonbar -g ${panelWidth}x${panelHeight}+${panelX}+${topPanelY} -f "${font}-${fontSize}" -f "${iconFont}" -B "${background}" -p -d | \
while true; do read line; eval $line; done &
配置文件:
#!/bin/sh
# Import config files.
. ~/.universal
# Select which blocks are displayed on the status bar.
selectedBlocks=(
"network"
"dropbox"
"volume"
# "battery"
"calendar"
"clock"
)
# Bar panel settings
separator="%{F${accent}} :: "
gapSize=16
borderSize=4
panelHeight=$((${gapSize} * 2))
panelWidth=$((${screenWidth} - ${panelHeight}))
panelX=${gapSize}
topPanelY=${gapSize}
bottomPanelY=$((${screenHeight} - ${gapSize} - ${panelHeight}))
最佳答案
您可能需要在交互之间添加暂停,否则它将尽可能快地运行所有内容并使用您的所有资源。这就是您所经历的。
要每两秒更新一次,您可以使用
sleep 2s
关于linux - 脚本导致 CPU 使用率高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37125995/
我们有一个 SQL 服务器,其中包含大约 40 个不同的数据库(每个数据库大约 1-5GB)。该服务器是8核2.3G CPU和32Gigs RAM。 27Gig 固定到 SQL Server。 CPU
我通过创建一个简单的循环并在数组中添加元素来测试 Java 8 并行流 API 的性能。 与非并行相比,我获得了巨大的性能提升。 但是当我检查我的任务管理器时,我看到了一个不受控制的 CPU 使用率,
我在使用 JFX 应用程序时遇到了一些问题。在我的本地开发系统(Linux)上,我的应用程序的 CPU 使用率约为 0-2%。当我在客户 Windows 虚拟机系统上安装并运行我的应用程序时,CPU
我在 unix 上工作。我想知道进程当前的 cpu 使用情况。我知道 ps 给出了在进程启动之前使用的 cpu 平均值 - 这不是当前使用情况。 有没有办法从 top 命令只打印 cpu 而无需 10
我尝试对许多文件进行哈希处理,但它没有使用满 CPU 能力。它只消耗25%。我测试将繁重的进程移动到线程中。但仍然没有什么不同。我来自 nodejs 使用 sharp 库。有同样的任务。它消耗所有的C
有没有办法在 CentOS 中获取 CPU 使用率?我需要解析这些信息并将其从 Perl 脚本中绘制出来,因此它最好是一个简单的工具,可以打印出一个单一的输出。 最佳答案 更简单,看/proc/loa
早上好。 目前我正在 Ubuntu 服务器 11.10 中运行 Java Web 应用程序。对于我的 Java 应用程序,我使用的是 apache、tomcat 和 mysql。 在过去的几周里,我的
我想做的事 我有一个计算密集型 OCaml 应用程序,我希望它在后台运行而不影响正常的计算机使用。我想为用户提供两个选项: (1) 应用程序仅在 CPU 使用率几乎为 0% 时运行; (2) 应用程序
我使用Couchdb创建了一个私有(private)NPM镜像,但我发现beam.smp将我的 CPU 使用率保持在 100%,有没有办法降低它,比如 50%? 非常感谢你。 最佳答案 您不能直接限制
我正在 docker 容器内构建一个项目,在创建容器时没有任何资源限制。当我监控它时,我看到了不同的 CPU 使用率结果。 来自 ctop 来自 Grafana(全节点导出器图表) 来自 cAdvis
我需要在 Web 开发编码 session 期间收集有关 Firefox CPU 使用率的数据,我想知道是否可以监视特定 firefox 插件的 CPU 使用率。 现在我正在使用 windows 的
R 是单线程的。 使用 R,如何检查 Windows 和 Linux 中有多少内核/线程正在运行 R? (或运行了多少卢比) 使用 R,如何检查 Windows 和 Linux 中运行 R 的每个内核
我正在尝试像示例中那样测试 Kubernetes HPA here kubectl run php-apache --image=gcr.io/google_containers/hpa-exampl
在我们的办公室,我们有一个开发服务器:Win 2k8 server R2 - Coldfusion 9(.0.0) - MySQL 5 ... 几乎每天早上上类时,我都会发现服务器的 CPU 为 50
我有一组 cpu 消耗执行,每个执行都在低优先级的线程中运行。这些线程将在一个进程(如 IIS)中运行,该进程具有许多我不想减慢它们速度的其他线程。我想计算所有其他线程的 cpu 使用率,如果它大于
我是 azure 云的新手,我已经部署了我的第一个辅助角色。 在我的本地系统中需要 30 分钟才能完成的过程在 azure 辅助角色上需要 1 个多小时。 为了查找问题,我已访问辅助角色的远程桌面。我
这是我的测试 boost::tribool 示例: #include #include "boost/logic/tribool.hpp" int main() { boost::logic::tr
我正在使用 docker 远程 API 来检索正在运行的容器的统计信息。对于 CPU 使用情况,我得到的例子是: "cpu_stats": { "cpu_usage": { "to
我是 azure 云的新手,我已经部署了我的第一个辅助角色。 在我的本地系统中需要 30 分钟才能完成的过程在 azure 辅助角色上需要 1 个多小时。 为了查找问题,我已访问辅助角色的远程桌面。我
我知道意外的无限循环通常会导致 CPU 使用率较高。但是,我不太明白为什么。谁能给我解释一下吗? 最佳答案 CPU 在执行该循环(永远不会结束)时无法执行任何其他操作。即使您使用的是抢占式多任务系统(
我是一名优秀的程序员,十分优秀!