<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Seppe</id>
	<title>ThinkWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Seppe"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Seppe"/>
	<updated>2026-05-11T02:59:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Arch_2007.08-2_on_a_ThinkPad_T43&amp;diff=37131</id>
		<title>Installing Arch 2007.08-2 on a ThinkPad T43</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Arch_2007.08-2_on_a_ThinkPad_T43&amp;diff=37131"/>
		<updated>2008-03-24T21:59:54Z</updated>

		<summary type="html">&lt;p&gt;Seppe: /* Thinkpad keys and OSD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Base installation ==&lt;br /&gt;
Follow the Arch Linux official [http://wiki.archlinux.org/index.php/Beginners_Guide Beginners Guide].&lt;br /&gt;
&lt;br /&gt;
== Wireless LAN ==&lt;br /&gt;
As in http://wiki.archlinux.org/index.php/Wireless_Setup, install ''wireless-tools'', check for hardware and install appropriate driver package ''ipw2200-fw''.&lt;br /&gt;
 &lt;br /&gt;
I installed Network Manager too. Check http://wiki.archlinux.org/index.php/NetworkManager&lt;br /&gt;
&lt;br /&gt;
== Cpu Frequency scaling ==&lt;br /&gt;
Follow official Arch page: http://wiki.archlinux.org/index.php/Cpufrequtils&lt;br /&gt;
&lt;br /&gt;
== Suspension/Hibernation ==&lt;br /&gt;
&lt;br /&gt;
Follow the guide http://wiki.archlinux.org/index.php/Pm-utils just till ''Advanced configuration''; then install ''laptop-mode-tools'' (this will fix all brightness problems too).&lt;br /&gt;
&lt;br /&gt;
== Touchpad ==&lt;br /&gt;
Follow the guide http://wiki.archlinux.org/index.php/Touchpad_Synaptics&lt;br /&gt;
&lt;br /&gt;
== Multimedia and codecs ==&lt;br /&gt;
&lt;br /&gt;
*Flash plugin: http://wiki.archlinux.org/index.php/Flash_and_Adobe_Acrobat_browser_plugins&lt;br /&gt;
&lt;br /&gt;
*Codecs: http://wiki.archlinux.org/index.php/Common_codecs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
== Compiz-fusion ==&lt;br /&gt;
&lt;br /&gt;
Compiz-Fusion: NON FUNZIONA&lt;br /&gt;
- Impostazione di AIGLX come da pagina http://wiki.archlinux.org/index.php/AIGLX&lt;br /&gt;
- Installazione di compiz-fusion-gtk come da pagina: http://wiki.archlinux.org/index.php/Compiz_Fusion&lt;br /&gt;
- Modificato xorg.conf inserendo nella sezione &amp;quot;Device&amp;quot;:&lt;br /&gt;
	Option	    &amp;quot;AGPMode&amp;quot; &amp;quot;4&amp;quot;&lt;br /&gt;
	Option	    &amp;quot;ColorTiling&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Thinkpad keys and OSD ==&lt;br /&gt;
&lt;br /&gt;
If you want to use the OSD capabilities:&lt;br /&gt;
&lt;br /&gt;
*Install the ''tpb'' package&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo pacman -S tpb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
*Follow the guide http://wiki.archlinux.org/index.php/Tpb&lt;br /&gt;
&lt;br /&gt;
To handle all thinkpad keys:&lt;br /&gt;
&lt;br /&gt;
*Add ibm_acpi in the MODULES list in your /etc/rc.conf&lt;br /&gt;
*Now you can configure the keys in /etc/acpi/handler.sh &lt;br /&gt;
&lt;br /&gt;
This is my /etc/acpi/handler.sh (it handles wifi/bluetooth switch [Alt-F5] and Turn off monitor [Alt-F3] keys):&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
# Default acpi script that takes an entry for all actions&lt;br /&gt;
&lt;br /&gt;
# NOTE: This is a 2.6-centric script.  If you use 2.4.x, you'll have to&lt;br /&gt;
#       modify it to not use /sys&lt;br /&gt;
&lt;br /&gt;
minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`&lt;br /&gt;
maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`&lt;br /&gt;
setspeed=&amp;quot;/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set $*&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
	button/power)&lt;br /&gt;
		#echo &amp;quot;PowerButton pressed!&amp;quot;&amp;gt;/dev/tty5&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			PWRF)	logger &amp;quot;PowerButton pressed: $2&amp;quot; ;;&lt;br /&gt;
			*)    logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	button/sleep)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			SLPB) echo -n mem &amp;gt;/sys/power/state ;;&lt;br /&gt;
			*)    logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	ac_adapter)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			AC)&lt;br /&gt;
				case &amp;quot;$4&amp;quot; in&lt;br /&gt;
					00000000)&lt;br /&gt;
						echo -n $minspeed &amp;gt;$setspeed&lt;br /&gt;
						#/etc/laptop-mode/laptop-mode start&lt;br /&gt;
					;;&lt;br /&gt;
					00000001)&lt;br /&gt;
						echo -n $maxspeed &amp;gt;$setspeed&lt;br /&gt;
						#/etc/laptop-mode/laptop-mode stop&lt;br /&gt;
					;;&lt;br /&gt;
				esac&lt;br /&gt;
				;;&lt;br /&gt;
			*) logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	battery)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			BAT0)&lt;br /&gt;
				case &amp;quot;$4&amp;quot; in&lt;br /&gt;
					00000000)	#echo &amp;quot;offline&amp;quot; &amp;gt;/dev/tty5&lt;br /&gt;
					;;&lt;br /&gt;
					00000001)	#echo &amp;quot;online&amp;quot;  &amp;gt;/dev/tty5&lt;br /&gt;
					;;&lt;br /&gt;
				esac&lt;br /&gt;
				;;&lt;br /&gt;
			CPU0)	&lt;br /&gt;
				;;&lt;br /&gt;
			*) logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
&lt;br /&gt;
	button/lid)&lt;br /&gt;
		#echo &amp;quot;LID switched!&amp;quot;&amp;gt;/dev/tty5&lt;br /&gt;
		;;&lt;br /&gt;
	ibm/hotkey)&lt;br /&gt;
		case &amp;quot;$4&amp;quot; in&lt;br /&gt;
			00001003)&lt;br /&gt;
				for kk in $(users) ; do&lt;br /&gt;
					su $kk -c &amp;quot;xset -display :0 dpms force standby&amp;quot;&lt;br /&gt;
				done&lt;br /&gt;
			;;&lt;br /&gt;
			00001005)&lt;br /&gt;
				cat /proc/acpi/ibm/bluetooth | awk '{ print $2 }' | while read line; do&lt;br /&gt;
					if [ $line == &amp;quot;enabled&amp;quot; ]; then&lt;br /&gt;
			          		echo disable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
		         		else&lt;br /&gt;
	              				echo enable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
				     	fi&lt;br /&gt;
					break&lt;br /&gt;
			       	done   &lt;br /&gt;
			;;&lt;br /&gt;
			*)&lt;br /&gt;
				logger &amp;quot;ACPI group/action undefined: $1 / $2&amp;quot;&lt;br /&gt;
			;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	*)&lt;br /&gt;
		logger &amp;quot;ACPI group/action undefined: $1 / $2&amp;quot;&lt;br /&gt;
		;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Seppe</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Arch_2007.08-2_on_a_ThinkPad_T43&amp;diff=37130</id>
		<title>Installing Arch 2007.08-2 on a ThinkPad T43</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Arch_2007.08-2_on_a_ThinkPad_T43&amp;diff=37130"/>
		<updated>2008-03-24T21:59:33Z</updated>

		<summary type="html">&lt;p&gt;Seppe: /* Thinkpad keys and OSD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Base installation ==&lt;br /&gt;
Follow the Arch Linux official [http://wiki.archlinux.org/index.php/Beginners_Guide Beginners Guide].&lt;br /&gt;
&lt;br /&gt;
== Wireless LAN ==&lt;br /&gt;
As in http://wiki.archlinux.org/index.php/Wireless_Setup, install ''wireless-tools'', check for hardware and install appropriate driver package ''ipw2200-fw''.&lt;br /&gt;
 &lt;br /&gt;
I installed Network Manager too. Check http://wiki.archlinux.org/index.php/NetworkManager&lt;br /&gt;
&lt;br /&gt;
== Cpu Frequency scaling ==&lt;br /&gt;
Follow official Arch page: http://wiki.archlinux.org/index.php/Cpufrequtils&lt;br /&gt;
&lt;br /&gt;
== Suspension/Hibernation ==&lt;br /&gt;
&lt;br /&gt;
Follow the guide http://wiki.archlinux.org/index.php/Pm-utils just till ''Advanced configuration''; then install ''laptop-mode-tools'' (this will fix all brightness problems too).&lt;br /&gt;
&lt;br /&gt;
== Touchpad ==&lt;br /&gt;
Follow the guide http://wiki.archlinux.org/index.php/Touchpad_Synaptics&lt;br /&gt;
&lt;br /&gt;
== Multimedia and codecs ==&lt;br /&gt;
&lt;br /&gt;
*Flash plugin: http://wiki.archlinux.org/index.php/Flash_and_Adobe_Acrobat_browser_plugins&lt;br /&gt;
&lt;br /&gt;
*Codecs: http://wiki.archlinux.org/index.php/Common_codecs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
== Compiz-fusion ==&lt;br /&gt;
&lt;br /&gt;
Compiz-Fusion: NON FUNZIONA&lt;br /&gt;
- Impostazione di AIGLX come da pagina http://wiki.archlinux.org/index.php/AIGLX&lt;br /&gt;
- Installazione di compiz-fusion-gtk come da pagina: http://wiki.archlinux.org/index.php/Compiz_Fusion&lt;br /&gt;
- Modificato xorg.conf inserendo nella sezione &amp;quot;Device&amp;quot;:&lt;br /&gt;
	Option	    &amp;quot;AGPMode&amp;quot; &amp;quot;4&amp;quot;&lt;br /&gt;
	Option	    &amp;quot;ColorTiling&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Thinkpad keys and OSD ==&lt;br /&gt;
&lt;br /&gt;
If you want to use the OSD capabilities:&lt;br /&gt;
&lt;br /&gt;
*Install the ''tpb'' package&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo pacman -S tpb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
*Follow the guide http://wiki.archlinux.org/index.php/Tpb&lt;br /&gt;
&lt;br /&gt;
To handle __all__ thinkpad keys:&lt;br /&gt;
&lt;br /&gt;
*Add ibm_acpi in the MODULES list in your /etc/rc.conf&lt;br /&gt;
*Now you can configure the keys in /etc/acpi/handler.sh &lt;br /&gt;
&lt;br /&gt;
This is my /etc/acpi/handler.sh (it handles wifi/bluetooth switch [Alt-F5] and Turn off monitor [Alt-F3] keys):&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
# Default acpi script that takes an entry for all actions&lt;br /&gt;
&lt;br /&gt;
# NOTE: This is a 2.6-centric script.  If you use 2.4.x, you'll have to&lt;br /&gt;
#       modify it to not use /sys&lt;br /&gt;
&lt;br /&gt;
minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`&lt;br /&gt;
maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`&lt;br /&gt;
setspeed=&amp;quot;/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set $*&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
	button/power)&lt;br /&gt;
		#echo &amp;quot;PowerButton pressed!&amp;quot;&amp;gt;/dev/tty5&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			PWRF)	logger &amp;quot;PowerButton pressed: $2&amp;quot; ;;&lt;br /&gt;
			*)    logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	button/sleep)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			SLPB) echo -n mem &amp;gt;/sys/power/state ;;&lt;br /&gt;
			*)    logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	ac_adapter)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			AC)&lt;br /&gt;
				case &amp;quot;$4&amp;quot; in&lt;br /&gt;
					00000000)&lt;br /&gt;
						echo -n $minspeed &amp;gt;$setspeed&lt;br /&gt;
						#/etc/laptop-mode/laptop-mode start&lt;br /&gt;
					;;&lt;br /&gt;
					00000001)&lt;br /&gt;
						echo -n $maxspeed &amp;gt;$setspeed&lt;br /&gt;
						#/etc/laptop-mode/laptop-mode stop&lt;br /&gt;
					;;&lt;br /&gt;
				esac&lt;br /&gt;
				;;&lt;br /&gt;
			*) logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	battery)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			BAT0)&lt;br /&gt;
				case &amp;quot;$4&amp;quot; in&lt;br /&gt;
					00000000)	#echo &amp;quot;offline&amp;quot; &amp;gt;/dev/tty5&lt;br /&gt;
					;;&lt;br /&gt;
					00000001)	#echo &amp;quot;online&amp;quot;  &amp;gt;/dev/tty5&lt;br /&gt;
					;;&lt;br /&gt;
				esac&lt;br /&gt;
				;;&lt;br /&gt;
			CPU0)	&lt;br /&gt;
				;;&lt;br /&gt;
			*) logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
&lt;br /&gt;
	button/lid)&lt;br /&gt;
		#echo &amp;quot;LID switched!&amp;quot;&amp;gt;/dev/tty5&lt;br /&gt;
		;;&lt;br /&gt;
	ibm/hotkey)&lt;br /&gt;
		case &amp;quot;$4&amp;quot; in&lt;br /&gt;
			00001003)&lt;br /&gt;
				for kk in $(users) ; do&lt;br /&gt;
					su $kk -c &amp;quot;xset -display :0 dpms force standby&amp;quot;&lt;br /&gt;
				done&lt;br /&gt;
			;;&lt;br /&gt;
			00001005)&lt;br /&gt;
				cat /proc/acpi/ibm/bluetooth | awk '{ print $2 }' | while read line; do&lt;br /&gt;
					if [ $line == &amp;quot;enabled&amp;quot; ]; then&lt;br /&gt;
			          		echo disable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
		         		else&lt;br /&gt;
	              				echo enable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
				     	fi&lt;br /&gt;
					break&lt;br /&gt;
			       	done   &lt;br /&gt;
			;;&lt;br /&gt;
			*)&lt;br /&gt;
				logger &amp;quot;ACPI group/action undefined: $1 / $2&amp;quot;&lt;br /&gt;
			;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	*)&lt;br /&gt;
		logger &amp;quot;ACPI group/action undefined: $1 / $2&amp;quot;&lt;br /&gt;
		;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Seppe</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Arch_2007.08-2_on_a_ThinkPad_T43&amp;diff=36965</id>
		<title>Installing Arch 2007.08-2 on a ThinkPad T43</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Arch_2007.08-2_on_a_ThinkPad_T43&amp;diff=36965"/>
		<updated>2008-03-13T16:37:51Z</updated>

		<summary type="html">&lt;p&gt;Seppe: â†Created page with '== Base installation == Follow the Arch Linux official [http://wiki.archlinux.org/index.php/Beginners_Guide Beginners Guide].  == Wireless LAN == As in http://wiki.archlin...'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Base installation ==&lt;br /&gt;
Follow the Arch Linux official [http://wiki.archlinux.org/index.php/Beginners_Guide Beginners Guide].&lt;br /&gt;
&lt;br /&gt;
== Wireless LAN ==&lt;br /&gt;
As in http://wiki.archlinux.org/index.php/Wireless_Setup, install ''wireless-tools'', check for hardware and install appropriate driver package ''ipw2200-fw''.&lt;br /&gt;
 &lt;br /&gt;
I installed Network Manager too. Check http://wiki.archlinux.org/index.php/NetworkManager&lt;br /&gt;
&lt;br /&gt;
== Cpu Frequency scaling ==&lt;br /&gt;
Follow official Arch page: http://wiki.archlinux.org/index.php/Cpufrequtils&lt;br /&gt;
&lt;br /&gt;
== Suspension/Hibernation ==&lt;br /&gt;
&lt;br /&gt;
Follow the guide http://wiki.archlinux.org/index.php/Pm-utils just till ''Advanced configuration''; then install ''laptop-mode-tools'' (this will fix all brightness problems too).&lt;br /&gt;
&lt;br /&gt;
== Touchpad ==&lt;br /&gt;
Follow the guide http://wiki.archlinux.org/index.php/Touchpad_Synaptics&lt;br /&gt;
&lt;br /&gt;
== Multimedia and codecs ==&lt;br /&gt;
&lt;br /&gt;
*Flash plugin: http://wiki.archlinux.org/index.php/Flash_and_Adobe_Acrobat_browser_plugins&lt;br /&gt;
&lt;br /&gt;
*Codecs: http://wiki.archlinux.org/index.php/Common_codecs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
== Compiz-fusion ==&lt;br /&gt;
&lt;br /&gt;
Compiz-Fusion: NON FUNZIONA&lt;br /&gt;
- Impostazione di AIGLX come da pagina http://wiki.archlinux.org/index.php/AIGLX&lt;br /&gt;
- Installazione di compiz-fusion-gtk come da pagina: http://wiki.archlinux.org/index.php/Compiz_Fusion&lt;br /&gt;
- Modificato xorg.conf inserendo nella sezione &amp;quot;Device&amp;quot;:&lt;br /&gt;
	Option	    &amp;quot;AGPMode&amp;quot; &amp;quot;4&amp;quot;&lt;br /&gt;
	Option	    &amp;quot;ColorTiling&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Thinkpad keys and OSD ==&lt;br /&gt;
&lt;br /&gt;
*Add ibm_acpi in the MODULES list in your /etc/rc.conf&lt;br /&gt;
*Now you can configure the keys in /etc/acpi/handler.sh &lt;br /&gt;
&lt;br /&gt;
This is my /etc/acpi/handler.sh (it handles wifi/bluetooth switch [Alt-F5] and Turn off monitor [Alt-F3] keys):&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
# Default acpi script that takes an entry for all actions&lt;br /&gt;
&lt;br /&gt;
# NOTE: This is a 2.6-centric script.  If you use 2.4.x, you'll have to&lt;br /&gt;
#       modify it to not use /sys&lt;br /&gt;
&lt;br /&gt;
minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`&lt;br /&gt;
maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`&lt;br /&gt;
setspeed=&amp;quot;/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set $*&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
	button/power)&lt;br /&gt;
		#echo &amp;quot;PowerButton pressed!&amp;quot;&amp;gt;/dev/tty5&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			PWRF)	logger &amp;quot;PowerButton pressed: $2&amp;quot; ;;&lt;br /&gt;
			*)    logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	button/sleep)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			SLPB) echo -n mem &amp;gt;/sys/power/state ;;&lt;br /&gt;
			*)    logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	ac_adapter)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			AC)&lt;br /&gt;
				case &amp;quot;$4&amp;quot; in&lt;br /&gt;
					00000000)&lt;br /&gt;
						echo -n $minspeed &amp;gt;$setspeed&lt;br /&gt;
						#/etc/laptop-mode/laptop-mode start&lt;br /&gt;
					;;&lt;br /&gt;
					00000001)&lt;br /&gt;
						echo -n $maxspeed &amp;gt;$setspeed&lt;br /&gt;
						#/etc/laptop-mode/laptop-mode stop&lt;br /&gt;
					;;&lt;br /&gt;
				esac&lt;br /&gt;
				;;&lt;br /&gt;
			*) logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	battery)&lt;br /&gt;
		case &amp;quot;$2&amp;quot; in&lt;br /&gt;
			BAT0)&lt;br /&gt;
				case &amp;quot;$4&amp;quot; in&lt;br /&gt;
					00000000)	#echo &amp;quot;offline&amp;quot; &amp;gt;/dev/tty5&lt;br /&gt;
					;;&lt;br /&gt;
					00000001)	#echo &amp;quot;online&amp;quot;  &amp;gt;/dev/tty5&lt;br /&gt;
					;;&lt;br /&gt;
				esac&lt;br /&gt;
				;;&lt;br /&gt;
			CPU0)	&lt;br /&gt;
				;;&lt;br /&gt;
			*) logger &amp;quot;ACPI action undefined: $2&amp;quot; ;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
&lt;br /&gt;
	button/lid)&lt;br /&gt;
		#echo &amp;quot;LID switched!&amp;quot;&amp;gt;/dev/tty5&lt;br /&gt;
		;;&lt;br /&gt;
	ibm/hotkey)&lt;br /&gt;
		case &amp;quot;$4&amp;quot; in&lt;br /&gt;
			00001003)&lt;br /&gt;
				for kk in $(users) ; do&lt;br /&gt;
					su $kk -c &amp;quot;xset -display :0 dpms force standby&amp;quot;&lt;br /&gt;
				done&lt;br /&gt;
			;;&lt;br /&gt;
			00001005)&lt;br /&gt;
				cat /proc/acpi/ibm/bluetooth | awk '{ print $2 }' | while read line; do&lt;br /&gt;
					if [ $line == &amp;quot;enabled&amp;quot; ]; then&lt;br /&gt;
			          		echo disable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
		         		else&lt;br /&gt;
	              				echo enable &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
				     	fi&lt;br /&gt;
					break&lt;br /&gt;
			       	done   &lt;br /&gt;
			;;&lt;br /&gt;
			*)&lt;br /&gt;
				logger &amp;quot;ACPI group/action undefined: $1 / $2&amp;quot;&lt;br /&gt;
			;;&lt;br /&gt;
		esac&lt;br /&gt;
		;;&lt;br /&gt;
	*)&lt;br /&gt;
		logger &amp;quot;ACPI group/action undefined: $1 / $2&amp;quot;&lt;br /&gt;
		;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Seppe</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T43&amp;diff=36964</id>
		<title>Installation instructions for the ThinkPad T43</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T43&amp;diff=36964"/>
		<updated>2008-03-13T16:09:26Z</updated>

		<summary type="html">&lt;p&gt;Seppe: /* Distribution-specific instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Specific installation notes for the ThinkPad {{T43}}.&lt;br /&gt;
&lt;br /&gt;
==Distribution-specific instructions==&lt;br /&gt;
*{{Install|Debian|/Sarge|T43}}&lt;br /&gt;
*{{Install|Debian|/Sid|T43}}&lt;br /&gt;
*{{Install|Fedora| Core 4|T43}}&lt;br /&gt;
*{{Install|Fedora| Core 4|T43}} (2668) [[http://thinkwiki.org/wiki/Installing_Fedora_Core_4_on_a_ThinkPad_T43_%282668%29]]&lt;br /&gt;
*{{Install|Fedora| Core 5|T43}} (2686)&lt;br /&gt;
*{{Install|Fedora| Core 6|T43}} (2668)&lt;br /&gt;
*{{Install|Gentoo||T43}} (2668)&lt;br /&gt;
*{{Install|Ubuntu| 5.04|T43}} (1875)&lt;br /&gt;
*{{Install|Ubuntu| 5.10|T43}} (1871)&lt;br /&gt;
*{{Install|Ubuntu| 6.06|T43}}&lt;br /&gt;
*{{Install|Ubuntu| 6.10|T43}} (2668)&lt;br /&gt;
*{{Install|Ubuntu| 7.04|T43}}&lt;br /&gt;
*{{Install|Ubuntu| 7.10|T43}}&lt;br /&gt;
*{{Install|OpenSUSE| 10.1|T43}} (2668)&lt;br /&gt;
*{{Install|MacOSX| X86 (Hackintosh) 10.4.x|T43}} (2668)&lt;br /&gt;
*{{Install|Arch| 2007.08-2|T43}} (2668)&lt;br /&gt;
&lt;br /&gt;
==External instructions==&lt;br /&gt;
* [http://linux.spiney.org/debian_gnu_linux_on_an_ibm_thinkpad_t43p Debian Linux on an IBM Thinkpad T43p]&lt;br /&gt;
* [http://wiki.foosel.net/linux/t43 Debian GNU/Linux Etch on an IBM ThinkPad T43]&lt;br /&gt;
* [http://sth.freeshell.org/t43-linux.html Gentoo on T43]&lt;br /&gt;
* [http://www.cs.ust.hk/~joseph/Favorites/Debian/UbuntuOnIBMThinkpadT43.html Ubuntu on IBM ThinkPad T43 (2668-HH5)]&lt;br /&gt;
* [http://ce.et.tudelft.nl/~zhijiangchang/index.html#useful How to make windows, linux and AcessIBM work all together]&lt;/div&gt;</summary>
		<author><name>Seppe</name></author>
		
	</entry>
</feed>