Skip to content
Snippets Groups Projects
Commit 1922eff1 authored by Ray Sherwin's avatar Ray Sherwin
Browse files

Made changes for new package cpu-temp-speed to be installed

in Mate and XFCE
parent 96415668
No related branches found
No related tags found
No related merge requests found
...@@ -81,6 +81,7 @@ manjaro-settings-manager ...@@ -81,6 +81,7 @@ manjaro-settings-manager
wget wget
tlp tlp
xdg-user-dirs xdg-user-dirs
cpu-temp-speed
# File systems access # File systems access
manjaro-settings-samba manjaro-settings-samba
......
...@@ -116,6 +116,7 @@ mousepad ...@@ -116,6 +116,7 @@ mousepad
viewnior viewnior
wget wget
tlp tlp
cpu-temp-speed
# File systems access # File systems access
gvfs gvfs
......
# Usage: cpu-temp-speed
#
# Monitors CPU clock speed and temperature.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
cpu_freq=/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
cpu_temp=/sys/class/thermal/thermal_zone0/temp
if [ -e $cpu_freq ] ; then
if [ -e $cpu_temp ] ; then
while [ true ] ; do
clk=$(cat $cpu_freq)
cpu=$(cat $cpu_temp)
echo -ne $(($clk/1000))" Mhz / "$(($cpu/1000))"° C \r"
sleep 2
done
fi
fi
# Usage: cpu-temp-speed
#
# Monitors CPU clock speed and temperature.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
cpu_freq=/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
cpu_temp=/sys/class/thermal/thermal_zone0/temp
if [ -e $cpu_freq ] ; then
if [ -e $cpu_temp ] ; then
while [ true ] ; do
clk=$(cat $cpu_freq)
cpu=$(cat $cpu_temp)
echo -ne $(($clk/1000))" Mhz / "$(($cpu/1000))"° C \r"
sleep 2
done
fi
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment