I'm running Debian Etch, my window manager is fluxbox and my display manager is gdm.
I want to run some commands when I log in so I've tried adding the commands to both .xinitrc and .xsession but they both seem to get ignored.
An example of the files would be:
Code:
#!/bin/sh
xset b off &
xset s off &
xset s noblank &
I've tried prefixing each line with 'exec' and tried removing the & from each line but still the files seem to be ignored. Am I missing something obvious or just doing something wrong?
Thanks.