diff options
author | MagicMan <MagicMan07@bluebottle.com> | 2010-05-11 15:18:42 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 15:18:42 +0200 |
commit | d2b460fdf20edc102e2114eb021637724e262167 (patch) | |
tree | 20618b0d150998b6e56b33ccf65ece54d496ea08 /system/numlockx/README | |
parent | b18c3ea4e657fd400467b6576c1dcffe21f40083 (diff) | |
download | slackbuilds-d2b460fdf20edc102e2114eb021637724e262167.tar.gz |
system/numlockx: Initial import
Diffstat (limited to 'system/numlockx/README')
-rw-r--r-- | system/numlockx/README | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/system/numlockx/README b/system/numlockx/README new file mode 100644 index 0000000000..396a3a8f47 --- /dev/null +++ b/system/numlockx/README @@ -0,0 +1,31 @@ +This little thingy allows you to start X with NumLock turned on (which is +a feature that a lot of people seem to miss and nobody really knew how to +achieve this ). + +Depending on how you start X, you might/will want to modify both +/etc/X11/xdm/Xsetup_0 and your $HOME/.xinitrc files. + +Add this to the END of /etc/X11/xdm/Xsetup_0 + + # Turn NumLock on (using numlockx) + if [ -x /usr/bin/numlockx ]; then + /usr/bin/numlockx + fi + +Add this to the BEGINNING of $HOME/.xinitrc + + # Turn NumLock on (using numlockx) + if [ -x /usr/bin/numlockx ]; then + /usr/bin/numlockx + fi + +Note that $HOME/.xinitrc is just a copy of /etc/X11/xinit/xinitrc.$SOMETHING, +where $SOMETHING is your preferred window manager. The xwmconfig(1) binary +makes this copy when it is run. To summarize, if you use xwmconfig(1) to +change your window manager/desktop environment after editing it for numlockx, +you will need to make the edits again. Alternatively, you can make the +numlockx edit to the "master" files in /etc/X11/xinit/ for each of the +installed window managers, and this will allow you to change window managers +without losing the numlockx functionality. However, be aware that an upgrade +to any of the window managers involved might/will overwrite your changes. + |