configs  Check-in [f22ec38b1f]

Overview
Comment:Remove cycle_asus_fan.sh

It is no longer needed as it has been properly integrated in newer
kernels.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f22ec38b1f824efe62f9f495f5e0b420e02f0f6016236af48553c3d9f530afe0
User & Date: js on 2022-07-17 12:05:49
Other Links: manifest | tags
Context
2022-07-17
16:51
zshrc: Fix "cross switch" check-in: aa61557485 user: js tags: trunk
12:05
Remove cycle_asus_fan.sh check-in: f22ec38b1f user: js tags: trunk
2022-07-14
20:44
cross wii-u: Include $DEVKITPRO/tools/bin in PATH check-in: cbe0993402 user: js tags: trunk
Changes

Deleted cycle_asus_fan.sh version [a5c7ec9b42].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
#
# Small script to change the performance / fan mode on ASUS laptops and display
# a notification about it. Can be bound to the fan key of the keyboard in e.g.
# GNOME.
# Requires /sys/devices/platform/asus-nb-wmi/throttle_thermal_policy to be owned
# by the user, e.g. by putting into /etc/tmpfiles.d/asus_fan_perms.conf:
# z /sys/devices/platform/asus-nb-wmi/throttle_thermal_policy 664 root js - -
# (Replace js with the primary group of your user)
#

file="/sys/devices/platform/asus-nb-wmi/throttle_thermal_policy"
current="$(<$file)"
new="$(((current + 1) % 3))"

if ! echo "$new" >"$file"; then
	notify-send -i dialog-error -c device \
		"Performance Control" \
		"Failed to change performance profile."
	exit 1
fi

case "$new" in
0)
	notify-send -i power-profile-balanced -c device \
		"Performance Control" \
		"Performance profile changed to normal."
	;;
1)
	notify-send -i power-profile-performance -c device \
		"Performance Control" \
		"Performance profile changed to turbo."
	;;
2)
	notify-send -i power-profile-power-saver -c device \
		"Performance Control" \
		"Performance profile changed to quiet."
	;;
esac
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<