
24 Aug
2009
24 Aug
'09
7:20 p.m.
Quoting Eric Thomas
What would be the correct way to set up the .xsession file? I am trying the following:
exec /home/eric/bin/xmonad setenv DISPLAY=beryllium:0.1 exec /home/eric/bin/xmonad
"exec" replaces the current process (i.e. your the shell running your .xsession file) with its argument, so this never reaches the second line. Your .xsession file can be as simple as /home/eric/bin/xmonad & DISPLAY=:0.1 /home/eric/bin/xmonad Cheers, ~d