3.1 KiB
layout, status, published, title, author, author_login, author_email, author_url, wordpress_id, wordpress_url, date, categories, tags, comments
| layout | status | published | title | author | author_login | author_email | author_url | wordpress_id | wordpress_url | date | categories | tags | comments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| post | publish | true | Activate numpad on startup | Julien Lengrand-Lambert | jlengrand | julien@lengrand.fr | http://www.lengrand.fr | 29 | http://www.lengrandlambert.fr/wordpress/?p=29 | 2011-10-18 13:14:24.000000000 +02:00 |
|
|
|
Hi all,
I recently switched from Ubuntu to Crunchbang as main distribution for my home computer and I may even talk a bit more about it in a later post ;)
The main topic here is that my num pad wad not activated by default on boot, and I had to tap Verr. Num on each login. My password having numbers, it quickly became quite boring . . .
Running Ubuntu, the solution was quite simple : installing the numlockx package from the main repository.
Gaving Debian now, I tried the same :
{% highlight bash %} $sudo apt-get install numlockx {% endhighlight %}
The package did install actually, but seems like it was not enough. . .
To run on startup, this module had to be added to the list of apps to be started after the X server .
On my Openbox based Crunchbang, the solution was to edit my autostart.sh to add a new line :
{% highlight bash %} $ echo "(sleep 5s && numlock) &" \
~/.config/openbox/autostart.sh {% endhighlight %}